aboutsummaryrefslogtreecommitdiff
path: root/readline
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-11-23 01:49:55 +0000
committerJohn Gilmore <gnu@cygnus>1991-11-23 01:49:55 +0000
commitec230564a6113c29c47a5b96c0e339cc2974b190 (patch)
treee8bb30c818a13f05c56f6c00b1db58a15755367f /readline
parentb68da3b817a695db98248caca41314aca1e09ff4 (diff)
downloadfsf-binutils-gdb-ec230564a6113c29c47a5b96c0e339cc2974b190.zip
fsf-binutils-gdb-ec230564a6113c29c47a5b96c0e339cc2974b190.tar.gz
fsf-binutils-gdb-ec230564a6113c29c47a5b96c0e339cc2974b190.tar.bz2
Initial revision
Diffstat (limited to 'readline')
-rw-r--r--readline/sysdep-obsd.h11
1 files changed, 11 insertions, 0 deletions
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 <sys/dir.h>
+typedef struct direct dirent;