From ec230564a6113c29c47a5b96c0e339cc2974b190 Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Sat, 23 Nov 1991 01:49:55 +0000 Subject: [PATCH] Initial revision --- readline/sysdep-obsd.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 readline/sysdep-obsd.h diff --git a/readline/sysdep-obsd.h b/readline/sysdep-obsd.h new file mode 100644 index 0000000..86b6d0d --- /dev/null +++ b/readline/sysdep-obsd.h @@ -0,0 +1,11 @@ +/* System-dependent stuff, for Sony NEwS, Mach, and other systems + in the "old BSD Unix" tradition. */ + +#ifdef __GNUC__ +#define alloca __builtin_alloca +#else +extern char *alloca (); +#endif + +#include +typedef struct direct dirent; -- 2.7.4