diff options
author | Per Bothner <per@bothner.com> | 1991-09-30 19:54:08 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1991-09-30 19:54:08 +0000 |
commit | f99988e38f5e7b6266bfb5ca11d4fa67235a36b3 (patch) | |
tree | b5031718fcff7518b55565ca9b1039db56769544 /include/sysdep.h | |
parent | 3fdbfe8d128643f27417fc04e8aa06aad64bf110 (diff) | |
download | gdb-f99988e38f5e7b6266bfb5ca11d4fa67235a36b3.zip gdb-f99988e38f5e7b6266bfb5ca11d4fa67235a36b3.tar.gz gdb-f99988e38f5e7b6266bfb5ca11d4fa67235a36b3.tar.bz2 |
* sysdep.h: Define NEWSOS3_SYS, and use it.
Diffstat (limited to 'include/sysdep.h')
-rwxr-xr-x | include/sysdep.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sysdep.h b/include/sysdep.h index 3a2806a..db042b2 100755 --- a/include/sysdep.h +++ b/include/sysdep.h @@ -54,6 +54,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define IRIX4_SYS 18 /* SGI Iris running cypress */ #define HP300BSD_SYS 19 #define ULTRA3_SYS 20 /* NYU Ultracomputer */ +#define NEWSOS3_SYS 21 /* Sony NewsOS 3.x (bsd-4.3 based) */ #include <ansidecl.h> @@ -102,6 +103,12 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <sys/h-sun3.h> #endif +#if HOST_SYS==NEWSOS3_SYS +#define HOST_IS_SUN3 1 /* Lie - should be close enough */ +#include <sys/h-sun3.h> /* Probably good enough */ +#define MISSING_VFPRINTF +#endif + #if HOST_SYS==DEC3100_SYS #define HOST_IS_DEC3100 1 #include <sys/h-dec3100.h> |