diff -c work/qmail-1.03/alloc.c fixed-work/qmail-1.03/alloc.c *** work/qmail-1.03/alloc.c Mon Jun 15 20:53:16 1998 --- fixed-work/qmail-1.03/alloc.c Mon Nov 19 11:44:15 2007 *************** *** 1,7 **** #include "alloc.h" #include "error.h" ! extern char *malloc(); ! extern void free(); #define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */ #define SPACE 4096 /* must be multiple of ALIGNMENT */ --- 1,8 ---- + #include #include "alloc.h" #include "error.h" ! /*extern char *malloc(); */ ! /*extern void free(); */ #define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */ #define SPACE 4096 /* must be multiple of ALIGNMENT */ diff -c work/qmail-1.03/conf-cc fixed-work/qmail-1.03/conf-cc *** work/qmail-1.03/conf-cc Mon Nov 19 11:50:42 2007 --- fixed-work/qmail-1.03/conf-cc Mon Nov 19 11:43:17 2007 *************** *** 1 **** ! cc -O2 -fno-strict-aliasing -pipe -g --- 1 ---- ! cc -O -fno-strict-aliasing -pipe -g diff -c work/qmail-1.03/conf-ld fixed-work/qmail-1.03/conf-ld *** work/qmail-1.03/conf-ld Mon Jun 15 20:53:16 1998 --- fixed-work/qmail-1.03/conf-ld Mon Nov 19 11:43:09 2007 *************** *** 1,3 **** ! cc -s This will be used to link .o files into an executable. --- 1,3 ---- ! cc This will be used to link .o files into an executable. diff -c work/qmail-1.03/spawn.c fixed-work/qmail-1.03/spawn.c *** work/qmail-1.03/spawn.c Mon Jun 15 20:53:16 1998 --- fixed-work/qmail-1.03/spawn.c Mon Nov 19 11:43:29 2007 *************** *** 1,5 **** --- 1,6 ---- #include #include + #include "alloc.h" #include "sig.h" #include "wait.h" #include "substdio.h"