Remove explicit declarations of xmalloc and xrealloc,

Instead, include "xalloc.h".
This commit is contained in:
Jim Meyering 2001-11-17 13:51:34 +00:00
parent b150c16ebc
commit 13d08934ba

View File

@ -50,8 +50,7 @@
#include "readtokens.h"
#include "unlocked-io.h"
void *xmalloc ();
void *xrealloc ();
#include "xalloc.h"
#define STREQ(a,b) ((a) == (b) || ((a) && (b) && *(a) == *(b) \
&& strcmp(a, b) == 0))