diff options
author | Steve Chamberlain <steve@cygnus> | 1991-05-18 02:57:45 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-05-18 02:57:45 +0000 |
commit | 19b03b7aa4dd0eccffab131fd91495ef122fccc7 (patch) | |
tree | 0831b76b569fdb6121b914d3e941b5d15a3a4188 /include/sysdep.h | |
parent | f827120d4545a08c8e8edb25d4ec5b50d694912b (diff) | |
download | gdb-19b03b7aa4dd0eccffab131fd91495ef122fccc7.zip gdb-19b03b7aa4dd0eccffab131fd91495ef122fccc7.tar.gz gdb-19b03b7aa4dd0eccffab131fd91495ef122fccc7.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'include/sysdep.h')
-rwxr-xr-x | include/sysdep.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/sysdep.h b/include/sysdep.h index ccaf13d..9f39a5d 100755 --- a/include/sysdep.h +++ b/include/sysdep.h @@ -42,7 +42,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define DGUX_SYS 9 #define DEC3100_SYS 10 #define HP9000_SYS 11 - +#define APOLLO400_SYS 12 +#define DOS_SYS 13 #include <ansidecl.h> #if __STDC__ @@ -100,5 +101,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define USG #include <sys/h-hp9000.h> #endif +#if HOST_SYS==APOLLO400_SYS +#define HOST_IS_APOLLO400 1 +#include <sys/h-ap400.h> +#endif + +#if HOST_SYS==DOS_SYS +#define HOST_IS_DOS 1 +#include <sys/h_dos.h> +#endif #endif |