Fixup dirent<->direct stuff.
This commit is contained in:
parent
a4ff7962b2
commit
56858b9575
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
/* System-dependent stuff for AIX 3.1 on RS/6000 */
|
||||
|
||||
#pragma alloca
|
||||
#include <dirent.h>
|
||||
typedef struct dirent dirent;
|
||||
|
|
|
@ -9,3 +9,13 @@
|
|||
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;
|
||||
|
|
Loading…
Reference in a new issue