diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/input.c | 3 | ||||
-rw-r--r-- | src/input.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/input.c b/src/input.c index bc84e57..27c4fd1 100644 --- a/src/input.c +++ b/src/input.c @@ -107,6 +107,7 @@ EditLine *el; /* cookie for editline package */ STATIC void pushfile(void); static int preadfd(void); +static void setinputfd(int fd, int push); #ifdef mkinit INCLUDE <stdio.h> @@ -422,7 +423,7 @@ out: * interrupts off. */ -void +static void setinputfd(int fd, int push) { if (push) { diff --git a/src/input.h b/src/input.h index 1d6f528..50a7797 100644 --- a/src/input.h +++ b/src/input.h @@ -57,7 +57,6 @@ void pungetc(void); void pushstring(char *, void *); void popstring(void); int setinputfile(const char *, int); -void setinputfd(int, int); void setinputstring(char *); void popfile(void); void popallfiles(void); |