Fixup dirent<->direct stuff.
[deliverable/binutils-gdb.git] / readline / sysdep-norm.h
1 /* System-dependent stuff, for ``normal'' systems */
2
3 #ifdef __GNUC__
4 #define alloca __builtin_alloca
5 #else
6 #if defined (sparc) && defined (sun)
7 #include <alloca.h>
8 #else
9 extern char *alloca ();
10 #endif
11 #endif
12
13 #if defined (USG) && defined (TIOCGWINSZ)
14 #include <sys/stream.h>
15 #if defined (USGr4) || defined (USGr3)
16 #include <sys/ptem.h>
17 #endif /* USGr4 */
18 #endif /* USG && TIOCGWINSZ */
19
20 #include <dirent.h>
21 typedef struct dirent dirent;
This page took 0.037871 seconds and 5 git commands to generate.