aboutsummaryrefslogtreecommitdiff
blob: e66ab479cf10945cb65dbae90c7d096b2920f1be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- DPS/clients/makepsres/makepsres.c.old	2004-04-22 19:48:50.568331512 +0100
+++ DPS/clients/makepsres/makepsres.c	2004-04-22 19:50:34.076595864 +0100
@@ -124,8 +124,6 @@
 
 char *program;
 
-extern char *malloc(), *realloc();
-
 #if !defined(__NetBSD__) && !defined(__FreeBSD__)
 # if !defined(__GLIBC__)
 extern char *sys_errlist[];
--- DPS/clients/pswrap/psw.c.old	2004-04-22 19:54:13.609221832 +0100
+++ DPS/clients/pswrap/psw.c	2004-04-22 19:54:39.149339144 +0100
@@ -1906,7 +1906,6 @@
 
 char *psw_malloc(s) int s; {
     char *temp;
-    extern char *malloc();
     if ((temp = malloc((unsigned) s)) == NULL)
         AllocFailure();
     return(temp);
@@ -1914,7 +1913,6 @@
 
 char *psw_calloc(n,s) int n,s; {
     char *temp;
-    extern char *calloc();
     if ((temp = calloc((unsigned) n, (unsigned) s)) == NULL)
         AllocFailure();
     return(temp);