Removed duplicate (and incorrect) system function declarations.
authordtrg <none@none>
Fri, 21 Jul 2006 11:17:18 +0000 (11:17 +0000)
committerdtrg <none@none>
Fri, 21 Jul 2006 11:17:18 +0000 (11:17 +0000)
mach/i386/cv/cv.c
modules/src/object/obj.h
modules/src/object/rd.c
modules/src/object/wr.c
util/arch/archiver.c

index 7ad5b6d..d5ff13e 100644 (file)
@@ -100,7 +100,6 @@ int output;
 
 char *program ;
 
-extern long lseek();
 #define TEXTSG 0
 #define ROMSG  1
 #define DATASG 2
index 1c02947..a725ed5 100644 (file)
@@ -4,6 +4,7 @@
  * See the copyright notice in the ACK home directory, in the file "Copyright".
  */
 #include <local.h>
+#include <stdlib.h>
 #include <stdio.h>
 #include <out.h>
 #include <ranlib.h>
index 2334b05..55f67bb 100644 (file)
@@ -5,8 +5,6 @@
  */
 #include "obj.h"
 
-extern long            lseek();
-
 /*
  * Parts of the output file.
  */
index 0dcefec..53267d0 100644 (file)
@@ -13,8 +13,6 @@
 
 #include "obj.h"
 
-extern long            lseek();
-
 /*
  * Parts of the output file.
  */
index b627556..458c969 100644 (file)
@@ -41,12 +41,10 @@ struct ranlib *tab;
 unsigned int   tnum = 0;
 char   *tstrtab;
 unsigned int   tssiz = 0;
-long   time();
 unsigned int tabsz, strtabsz;
 #else
 #define MAGIC_NUMBER   ARMAG
 #endif
-long   lseek();
 
 #define odd(nr)                (nr & 01)
 #define even(nr)       (odd(nr) ? nr + 1 : nr)