--- OLD/xc/programs/xwd/dsimple.c Thu Jan 1 00:00:00 1970 +++ NEW/xc/programs/xwd/dsimple.c Thu Jan 1 00:00:00 1970 @@ -28,6 +28,7 @@ #include #include #include +#include /* * Other_stuff.h: Definitions of routines in other_stuff. * @@ -66,7 +67,7 @@ char *Malloc(size) unsigned size; { - char *data, *malloc(); + char *data; if (!(data = malloc(size))) Fatal_Error("Out of memory!"); @@ -82,7 +83,7 @@ char *ptr; int size; { - char *new_ptr, *realloc(); + char *new_ptr; if (!ptr) return(Malloc(size));