1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-12-17 21:31:35 +01:00

zsh-3.1.5-pws-10

This commit is contained in:
Tanaka Akira 1999-04-15 18:17:36 +00:00
parent b4a5b9db8b
commit 904b939cbd
97 changed files with 2943 additions and 541 deletions

View file

@ -70,8 +70,15 @@ char *alloca _((size_t));
# endif
#endif
#ifdef HAVE_LIBC_H /* NeXT */
# include <libc.h>
/*
* libc.h in an optional package for Debian Linux is broken (it
* defines dup() as a synonym for dup2(), which has a different
* number of arguments), so just include it for next.
*/
#ifdef __NeXT__
# ifdef HAVE_LIBC_H
# include <libc.h>
# endif
#endif
#ifdef HAVE_SYS_TYPES_H