diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-02-17 18:35:40 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-02-17 18:35:40 +0000 |
commit | ebb6075d2a66fe44ef4499c4c21c509172d3f448 (patch) | |
tree | a0187896070edad5d61e42d6d28b8f9278394a5a /bfd/hosts | |
parent | 1e4b4b1c03da681e18fab8ed832c3465a728907a (diff) | |
download | gdb-ebb6075d2a66fe44ef4499c4c21c509172d3f448.zip gdb-ebb6075d2a66fe44ef4499c4c21c509172d3f448.tar.gz gdb-ebb6075d2a66fe44ef4499c4c21c509172d3f448.tar.bz2 |
* hosts/sysv4.h: Include <unistd.h>, <stdlib.h>, and <time.h>.
Only define SEEK_SET and SEEK_CUR if they are not already defined.
Remove all external function declarations.
Diffstat (limited to 'bfd/hosts')
-rw-r--r-- | bfd/hosts/sysv4.h | 33 |
1 files changed, 7 insertions, 26 deletions
diff --git a/bfd/hosts/sysv4.h b/bfd/hosts/sysv4.h index 0f75102..5880d33 100644 --- a/bfd/hosts/sysv4.h +++ b/bfd/hosts/sysv4.h @@ -11,12 +11,19 @@ #include <ctype.h> #include <string.h> #include <sys/file.h> +#include <unistd.h> +#include <stdlib.h> +#include <time.h> #ifndef O_ACCMODE #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) #endif +#ifndef SEEK_SET #define SEEK_SET 0 +#endif +#ifndef SEEK_CUR #define SEEK_CUR 1 +#endif #define POSIX_UTIME @@ -27,30 +34,4 @@ #define HAVE_PROCFS /* This host has /proc support */ -extern void abort PARAMS ((void)); -extern int close PARAMS ((int)); -extern void exit PARAMS ((int)); -extern int fclose PARAMS ((FILE*)); -extern void free PARAMS ((PTR)); -extern int fseek PARAMS ((FILE*, long, int)); -extern int getgid PARAMS (()); -extern int getuid PARAMS (()); -extern PTR malloc PARAMS ((unsigned)); -extern void perror PARAMS ((CONST char *)); -extern PTR realloc PARAMS ((PTR, unsigned)); - -extern char *getenv(); -extern int chmod(); -extern int fstat(); -extern int stat(); - -extern char *ctime(); -extern int _flsbuf(); -extern int fclose(); -extern int utimes(); -extern int vfprintf(); -extern long atol(); -extern int fputc(); -extern int unlink(); - #include "fopen-same.h" |