mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 12:40:58 +02:00
16361: include <stdio.h> to avoid implicit declarations.
This commit is contained in:
parent
abd901094e
commit
6feb3f57f4
3 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-12-18 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 16361: zshconfig.ac, Src/input.c:
|
||||
include <stdio.h> to avoid implicit declarations.
|
||||
|
||||
2001-12-17 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 16352: Functions/Misc/zcalc: allow output formats to be
|
||||
|
|
|
@ -67,6 +67,10 @@
|
|||
* PWS 1996/12/10
|
||||
*/
|
||||
|
||||
#ifdef HAVE_STDIO_H
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#include "zsh.mdh"
|
||||
#include "input.pro"
|
||||
|
||||
|
|
|
@ -474,7 +474,7 @@ AC_HEADER_SYS_WAIT
|
|||
AC_CHECK_HEADERS(sys/time.h sys/times.h sys/select.h termcap.h termio.h \
|
||||
termios.h sys/param.h sys/filio.h string.h memory.h \
|
||||
limits.h fcntl.h libc.h sys/utsname.h sys/resource.h \
|
||||
locale.h errno.h stdlib.h unistd.h sys/capability.h \
|
||||
locale.h errno.h stdio.h stdlib.h unistd.h sys/capability.h \
|
||||
utmp.h utmpx.h sys/types.h pwd.h grp.h poll.h sys/mman.h \
|
||||
netinet/in_systm.h pcre.h)
|
||||
if test $dynamic = yes; then
|
||||
|
|
Loading…
Reference in a new issue