--- OLD/xc/programs/xprop/dsimple.c Thu Jan 1 00:00:00 1970 +++ NEW/xc/programs/xprop/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. * @@ -65,7 +66,7 @@ char *Malloc(size) unsigned size; { - char *data, *malloc(); + char *data; if (!(data = malloc(size))) Fatal_Error("Out of memory!"); @@ -81,7 +82,7 @@ char *ptr; int size; { - char *new_ptr, *realloc(); + char *new_ptr; if (!ptr) return(Malloc(size));