From: John Gilmore Date: Sat, 23 Nov 1991 01:49:55 +0000 (+0000) Subject: Initial revision X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ec230564a6113c29c47a5b96c0e339cc2974b190;p=binutils-gdb.git Initial revision --- diff --git a/readline/sysdep-obsd.h b/readline/sysdep-obsd.h new file mode 100644 index 00000000000..86b6d0d0857 --- /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;