Initial revision

This commit is contained in:
John Gilmore 1991-11-23 01:49:55 +00:00
parent b68da3b817
commit ec230564a6
1 changed files with 11 additions and 0 deletions

11
readline/sysdep-obsd.h Normal file
View File

@ -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;