]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* hosts/sysv4.h: Include <unistd.h>, <stdlib.h>, and <time.h>.
authorIan Lance Taylor <ian@airs.com>
Fri, 17 Feb 1995 18:35:40 +0000 (18:35 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 17 Feb 1995 18:35:40 +0000 (18:35 +0000)
Only define SEEK_SET and SEEK_CUR if they are not already defined.
Remove all external function declarations.

bfd/ChangeLog
bfd/hosts/sysv4.h

index a84fb80cc76f2d51feb3d5f555ac18d24467fb61..342355b72906cfa2f7943567ee323a092ad9d1c5 100644 (file)
@@ -6,6 +6,10 @@ Fri Feb 17 12:34:36 1995  Michael Meissner  <meissner@cygnus.com>
 
 Fri Feb 17 11:45:38 1995  Ian Lance Taylor  <ian@cygnus.com>
 
+       * 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.
+
        * syms.c (bfd_decode_symclass): Return 'W' for a weak symbol.
 
        * coffgen.c (coff_real_object_p): Set start address and flags
index 0f75102ee3f72f20e07e0ff318f5d39ec2a0986d..5880d3349220d2d943dc9f583cdb4bd22051ef2b 100644 (file)
 #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
 
 
 #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"