forked from Imagelibrary/binutils-gdb
Initial revision
This commit is contained in:
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;
|
||||
Reference in New Issue
Block a user