From: K. Richard Pixley Date: Tue, 24 Mar 1992 23:58:58 +0000 (+0000) Subject: add support for irix4 X-Git-Tag: gdb-4_18~22163 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbad27e8b331cafe9e02168e980db9310d96d41e;p=external%2Fbinutils.git add support for irix4 --- diff --git a/bfd/hosts/irix4.h b/bfd/hosts/irix4.h new file mode 100644 index 0000000..1ae0a58 --- /dev/null +++ b/bfd/hosts/irix4.h @@ -0,0 +1,41 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#if 0 +#include +#include +#endif + +#if !defined (O_ACCMODE) +#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) +#endif + +#if !defined (SEEK_SET) +#define SEEK_SET 0 +#define SEEK_CUR 1 +#endif + +/* EXACT TYPES */ +typedef char int8e_type; +typedef unsigned char uint8e_type; +typedef short int16e_type; +typedef unsigned short uint16e_type; +typedef int int32e_type; +typedef unsigned int uint32e_type; + +/* CORRECT SIZE OR GREATER */ +typedef char int8_type; +typedef unsigned char uint8_type; +typedef short int16_type; +typedef unsigned short uint16_type; +typedef int int32_type; +typedef unsigned int uint32_type; + +#include "fopen-same.h"