remove declarations which dup from system headers

('-ansi' compiler flag might have caused some declarations to be hidden)
This commit is contained in:
Glenn Strauss 2016-01-08 06:35:01 -05:00
parent 58e83b663b
commit 274c178661
4 changed files with 3 additions and 14 deletions

View File

@ -45,9 +45,6 @@
#define MAXCHILD 12 #define MAXCHILD 12
#define MAXWORK 10 #define MAXWORK 10
/* Can't seem to get this declared in the headers... */
extern int kill(pid_t pid, int sig);
void wrapup(const char *); void wrapup(const char *);
void onalarm(int); void onalarm(int);
void pipeerr(); void pipeerr();

View File

@ -74,15 +74,13 @@ Enumeration Func_1 ();
/* variables for time measurement: */ /* variables for time measurement: */
#ifdef TIMES #ifdef TIMES
struct tms time_info; #include <time.h>
extern int times (); #include <sys/times.h>
/* see library function "times" */
#define Too_Small_Time 120 #define Too_Small_Time 120
/* Measurements should last at least about 2 seconds */ /* Measurements should last at least about 2 seconds */
#endif #endif
#ifdef TIME #ifdef TIME
extern long time(); #include <time.h>
/* see library function "time" */
#define Too_Small_Time 2 #define Too_Small_Time 2
/* Measurements should last at least 2 seconds */ /* Measurements should last at least 2 seconds */
#endif #endif

View File

@ -51,8 +51,6 @@ char SCCSid[] = "@(#) @(#)fstime.c:3.5 -- 5/15/91 19:30:19";
#define FNAME0 "dummy0" #define FNAME0 "dummy0"
#define FNAME1 "dummy1" #define FNAME1 "dummy1"
extern void sync(void);
int w_test(int timeSecs); int w_test(int timeSecs);
int r_test(int timeSecs); int r_test(int timeSecs);
int c_test(int timeSecs); int c_test(int timeSecs);
@ -318,7 +316,6 @@ int r_test(int timeSecs)
unsigned long tmp; unsigned long tmp;
double start, end; double start, end;
extern int sigalarm; extern int sigalarm;
extern int errno;
/* Sync and let it settle */ /* Sync and let it settle */
sync(); sync();

View File

@ -376,9 +376,6 @@ char *argv[];
struct poll2ofd poll2ofd_array[MAX_FDS]; struct poll2ofd poll2ofd_array[MAX_FDS];
long poll2_times[MAX_ITERATIONS]; long poll2_times[MAX_ITERATIONS];
#endif #endif
#if 0
extern char *sys_errlist[];
#endif
#ifdef HAS_SELECT #ifdef HAS_SELECT
FD_ZERO (&input_fds); FD_ZERO (&input_fds);