old-cross-binutils/readline/sysdep-norm.h
1991-11-21 22:50:49 +00:00

21 lines
438 B
C

/* System-dependent stuff, for ``normal'' systems */
#ifdef __GNUC__
#define alloca __builtin_alloca
#else
#if defined (sparc) && defined (sun)
#include <alloca.h>
#else
extern char *alloca ();
#endif
#endif
#if defined (USG) && defined (TIOCGWINSZ)
#include <sys/stream.h>
#if defined (USGr4) || defined (USGr3)
#include <sys/ptem.h>
#endif /* USGr4 */
#endif /* USG && TIOCGWINSZ */
#include <dirent.h>
typedef struct dirent dirent;