ALIGN -> BFD_ALIGN
[deliverable/binutils-gdb.git] / readline / sysdep-norm.h
CommitLineData
51493cdb
JG
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
9extern char *alloca ();
10#endif
11#endif
56858b95
SG
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>
21typedef struct dirent dirent;
This page took 0.023985 seconds and 4 git commands to generate.