projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47cf071
)
Remove explicit declarations of xmalloc and xrealloc,
author
Jim Meyering
<jim@meyering.net>
Sat, 17 Nov 2001 13:51:34 +0000
(13:51 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sat, 17 Nov 2001 13:51:34 +0000
(13:51 +0000)
Instead, include "xalloc.h".
lib/readtokens.c
patch
|
blob
|
history
diff --git
a/lib/readtokens.c
b/lib/readtokens.c
index 8830ed771308b78059f8f0484ac4bff82cb925b1..d8d5ec8b707c6f334ce669b9d29e73030c50a685 100644
(file)
--- a/
lib/readtokens.c
+++ b/
lib/readtokens.c
@@
-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))