diff options
author | ache <ache@FreeBSD.org> | 1994-12-06 03:16:45 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-12-06 03:16:45 +0000 |
commit | a4fe90a250b63d3a1a94d716e876451fe786d866 (patch) | |
tree | 351a5738e9c046d7f2d71dd3c2ab7c759d21efa7 /gnu/lib/libreadline/signals.c | |
parent | 46ecb27be87b8d41cc76e7f0ffa04d757de9db0b (diff) | |
download | FreeBSD-src-a4fe90a250b63d3a1a94d716e876451fe786d866.zip FreeBSD-src-a4fe90a250b63d3a1a94d716e876451fe786d866.tar.gz |
Upgrade to version 2.0
Diffstat (limited to 'gnu/lib/libreadline/signals.c')
-rw-r--r-- | gnu/lib/libreadline/signals.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/lib/libreadline/signals.c b/gnu/lib/libreadline/signals.c index f57c07c..a9fda5c 100644 --- a/gnu/lib/libreadline/signals.c +++ b/gnu/lib/libreadline/signals.c @@ -19,6 +19,7 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#define READLINE_LIBRARY #include <stdio.h> #include <sys/types.h> @@ -28,11 +29,6 @@ #endif /* !NO_SYS_FILE */ #include <signal.h> -/* This is needed to include support for TIOCGWINSZ and window resizing. */ -#if defined (OSF1) || defined (BSD386) || defined (_386BSD) || defined (__BSD_4_4__) || defined (AIX) -# include <sys/ioctl.h> -#endif /* OSF1 || BSD386 || _386BSD || __BSD_4_4__ || AIX */ - #if defined (HAVE_UNISTD_H) # include <unistd.h> #endif /* HAVE_UNISTD_H */ @@ -54,9 +50,13 @@ extern int errno; /* System-specific feature definitions and include files. */ #include "rldefs.h" +#if defined (GWINSZ_IN_SYS_IOCTL) +# include <sys/ioctl.h> +#endif /* GWINSZ_IN_SYS_IOCTL */ + /* Some standard library routines. */ -#include <readline/readline.h> -#include <readline/history.h> +#include "readline.h" +#include "history.h" static void cr (); |