projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e597a4
)
(x2nrealloc_inline): Fix typos in comments: s/size/size_t/.
author
Jim Meyering
<jim@meyering.net>
Sat, 22 Nov 2003 15:07:36 +0000
(15:07 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sat, 22 Nov 2003 15:07:36 +0000
(15:07 +0000)
lib/xmalloc.c
patch
|
blob
|
history
diff --git
a/lib/xmalloc.c
b/lib/xmalloc.c
index 20d85d83aa5750d15b520dbbc534edaf11023eba..181006b43dbc69e40a1d6d5f167093074fe751b9 100644
(file)
--- a/
lib/xmalloc.c
+++ b/
lib/xmalloc.c
@@
-136,8
+136,8
@@
xrealloc (void *p, size_t n)
Here is an example of use:
int *p = NULL;
- size used = 0;
- size allocated = 0;
+ size
_t
used = 0;
+ size
_t
allocated = 0;
void
append_int (int value)
@@
-155,9
+155,9
@@
xrealloc (void *p, size_t n)
example:
int *p = NULL;
- size used = 0;
- size allocated = 0;
- size allocated1 = 1000;
+ size
_t
used = 0;
+ size
_t
allocated = 0;
+ size
_t
allocated1 = 1000;
void
append_int (int value)