projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a94a8dd
)
Declare xmalloc, xrealloc rather than including xalloc.h.
SH-UTILS-1_12a
author
Jim Meyering
<jim@meyering.net>
Mon, 7 Aug 1995 22:21:03 +0000
(22:21 +0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 7 Aug 1995 22:21:03 +0000
(22:21 +0000)
lib/readtokens.c
patch
|
blob
|
history
diff --git
a/lib/readtokens.c
b/lib/readtokens.c
index
c1b80a2
..
0bd6692
100644
(file)
--- a/
lib/readtokens.c
+++ b/
lib/readtokens.c
@@
-49,7
+49,8
@@
#endif /* not STDC_HEADERS and not HAVE_STRING_H */
#include "readtokens.h"
-#include "xalloc.h"
+void *xmalloc ();
+void *xrealloc ();
#define STREQ(a,b) ((a) == (b) || ((a) && (b) && *(a) == *(b) \
&& strcmp(a, b) == 0))