summarylogtreecommitdiffstats
path: root/gcc4-fixes.patch
blob: 39bf57dbcbe74d39ef857f8b4cf08e6a1497be11 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
diff -ub -r mpack-1.6-orig/unixos.c mpack-1.6/unixos.c
--- mpack-1.6-orig/unixos.c	2003-07-21 22:54:05.000000000 +0200
+++ mpack-1.6/unixos.c	2009-01-12 17:11:50.000000000 +0100
@@ -23,6 +23,7 @@
  * SOFTWARE.
  */
 #include <stdio.h>
+#include <stdlib.h>
 #include <ctype.h>
 #include <string.h>
 #include <errno.h>
@@ -38,10 +39,6 @@
 #define MAXHOSTNAMELEN 64
 #endif
 
-extern int errno;
-extern char *malloc();
-extern char *getenv();
-
 int overwrite_files = 0;
 int didchat;
 
diff -ub -r mpack-1.6-orig/unixpk.c mpack-1.6/unixpk.c
--- mpack-1.6-orig/unixpk.c	2003-07-21 22:50:41.000000000 +0200
+++ mpack-1.6/unixpk.c	2009-01-12 17:11:32.000000000 +0100
@@ -23,6 +23,9 @@
  * SOFTWARE.
  */
 #include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <getopt.h>
 #include <string.h>
 #include <errno.h>
 #include "common.h"
@@ -31,12 +34,6 @@
 
 #define MAXADDRESS 100
 
-extern char *getenv();
-
-extern int errno;
-extern int optind;
-extern char *optarg;
-
 void usage(void);
 void sendmail(FILE *infile, char **addr, int start);
 void inews(FILE *infile);
diff -ub -r mpack-1.6-orig/unixunpk.c mpack-1.6/unixunpk.c
--- mpack-1.6-orig/unixunpk.c	2003-07-21 22:51:55.000000000 +0200
+++ mpack-1.6/unixunpk.c	2009-01-12 17:12:25.000000000 +0100
@@ -23,6 +23,7 @@
  * SOFTWARE.
  */
 #include <stdio.h>
+#include <stdlib.h>
 #include "version.h"
 #include "part.h"
 
diff -ub -r mpack-1.6-orig/xmalloc.c mpack-1.6/xmalloc.c
--- mpack-1.6-orig/xmalloc.c	2003-07-21 22:35:31.000000000 +0200
+++ mpack-1.6/xmalloc.c	2009-01-12 17:12:07.000000000 +0100
@@ -23,8 +23,8 @@
  * SOFTWARE.
  */
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
-extern char *malloc(), *realloc();
 
 char *xmalloc (int size)
 {