From bfab6110a36b8a8e2cdab205e6a03a41aaddc914 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Sun, 19 Jan 1992 00:59:57 +0000 Subject: [PATCH] Initial revision --- bfd/hosts/stratus.h | 66 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 bfd/hosts/stratus.h diff --git a/bfd/hosts/stratus.h b/bfd/hosts/stratus.h new file mode 100644 index 00000000000..5ecbcadc5cb --- /dev/null +++ b/bfd/hosts/stratus.h @@ -0,0 +1,66 @@ +/* Stratus FTX2 host system */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifndef O_ACCMODE +#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) +#endif +#define SEEK_SET 0 +#define SEEK_CUR 1 + +#define POSIX_UTIME +#define HAVE_PROCFS /* This host has /proc support */ + +extern PROTO(void, abort,(void)); +extern PROTO(int, close,(int)); +extern PROTO(void, exit,(int)); +extern PROTO(int, fclose,(FILE*)); +extern PROTO(void, free,(PTR)); +extern PROTO(int, fseek,(FILE*, long, int)); +extern PROTO(int, getgid,()); +extern PROTO(int, getuid,()); +extern PROTO(PTR, malloc,(unsigned)); +extern PROTO(void, perror,(CONST char *)); +extern PROTO(int, qsort,(void *data,int els, int siz, int func())); +extern PROTO(PTR, realloc, (PTR, unsigned)); + +extern char *getenv(); +extern int chmod(); +extern int fstat(); +extern int stat(); +extern int strtol(); + +extern char *ctime(); +extern int _flsbuf(); +extern int fclose(); +extern int utimes(); +extern int vfprintf(); +extern long atol(); +extern int fputc(); +extern int unlink(); + +/* 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" -- 2.30.2