diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-12-18 01:13:22 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-12-18 01:13:22 +0000 |
commit | 6feb3f57f4c5524f2a047d76cbcd21e84cebfd27 (patch) | |
tree | dbbc3b734a580eb44a3cb08d74570f73122f564e /Src | |
parent | abd901094ea047da2b7b384f74af112e8453034c (diff) | |
download | zsh-6feb3f57f4c5524f2a047d76cbcd21e84cebfd27.tar.gz zsh-6feb3f57f4c5524f2a047d76cbcd21e84cebfd27.tar.xz zsh-6feb3f57f4c5524f2a047d76cbcd21e84cebfd27.zip |
16361: include <stdio.h> to avoid implicit declarations.
Diffstat (limited to 'Src')
-rw-r--r-- | Src/input.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/input.c b/Src/input.c index 8f33e3631..ba01dd068 100644 --- a/Src/input.c +++ b/Src/input.c @@ -67,6 +67,10 @@ * PWS 1996/12/10 */ +#ifdef HAVE_STDIO_H +#include <stdio.h> +#endif + #include "zsh.mdh" #include "input.pro" |