Initial revision
This commit is contained in:
parent
e19c9d4932
commit
a4ff7962b2
4 changed files with 45 additions and 0 deletions
12
readline/sysdep-irix.h
Normal file
12
readline/sysdep-irix.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
/* System-dependent stuff, for SGI irix */
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define alloca __builtin_alloca
|
||||
#else
|
||||
extern char *alloca ();
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stream.h>
|
||||
#include <sys/dir.h>
|
||||
typedef struct direct dirent;
|
10
readline/sysdep-newsos.h
Executable file
10
readline/sysdep-newsos.h
Executable file
|
@ -0,0 +1,10 @@
|
|||
/* System-dependent stuff, for ``normal'' systems */
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define alloca __builtin_alloca
|
||||
#else
|
||||
extern char *alloca ();
|
||||
#endif
|
||||
|
||||
#include <sys/dir.h>
|
||||
typedef struct direct dirent;
|
10
readline/sysdep-oldbsd.h
Executable file
10
readline/sysdep-oldbsd.h
Executable file
|
@ -0,0 +1,10 @@
|
|||
/* System-dependent stuff, for ``normal'' systems */
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define alloca __builtin_alloca
|
||||
#else
|
||||
extern char *alloca ();
|
||||
#endif
|
||||
|
||||
#include <sys/dir.h>
|
||||
typedef struct direct dirent;
|
13
readline/sysdep-sco.h
Normal file
13
readline/sysdep-sco.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
/* System-dependent stuff, for SCO systems */
|
||||
|
||||
#include <malloc.h>
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define alloca __builtin_alloca
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stream.h>
|
||||
#include <sys/ptem.h>
|
||||
#include <dirent.h>
|
||||
typedef struct dirent dirent;
|
Loading…
Add table
Reference in a new issue