summary refs log tree commit diff
path: root/src/input.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-01-05 22:20:45 +1100
committerHerbert Xu <herbert@gondor.apana.org.au>2015-01-05 22:58:52 +1100
commitd0e170e595a024aa5e4ec53a30f833f07f8cb849 (patch)
treecdbc0eb57be5cdc6cd228befe03b82d4344742cf /src/input.c
parentinput: Make preadbuffer static (diff)
downloaddash-d0e170e595a024aa5e4ec53a30f833f07f8cb849.tar.gz
dash-d0e170e595a024aa5e4ec53a30f833f07f8cb849.zip
input: Remove HETIO
It hasn't been possible to build HETIO for over ten years.  So
let's just kill it.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'src/input.c')
-rw-r--r--src/input.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/input.c b/src/input.c
index aa5dcfc..232bb9c 100644
--- a/src/input.c
+++ b/src/input.c
@@ -58,10 +58,6 @@
 #include "myhistedit.h"
 #endif
 
-#ifdef HETIO
-#include "hetio.h"
-#endif
-
 #define EOF_NLEFT -99		/* value of parsenleft when EOF pushed back */
 #define IBUFSIZ (BUFSIZ + 1)
 
@@ -188,11 +184,6 @@ retry:
 
 	} else
 #endif
-
-#ifdef HETIO
-		nr = hetio_read_input(parsefile->fd);
-		if (nr == -255)
-#endif
 		nr = read(parsefile->fd, buf, IBUFSIZ - 1);