diff options
author | Jim Meyering <jim@meyering.net> | 2000-11-10 11:13:32 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-11-10 11:13:32 +0000 |
commit | 64e75882f42ec94a4f3fcdf69d95e9c716fd2be6 (patch) | |
tree | 321162a4465669ff2a6391b2fafe14e86321c08b | |
parent | 151c87c3df844e9ee8118d2fb8456618ac0c8063 (diff) | |
download | coreutils-64e75882f42ec94a4f3fcdf69d95e9c716fd2be6.tar.xz |
Update from GNU libc.
-rw-r--r-- | lib/obstack.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/obstack.c b/lib/obstack.c index dde9405b8..66639d77b 100644 --- a/lib/obstack.c +++ b/lib/obstack.c @@ -524,20 +524,20 @@ int (obstack_make_room) (obstack, length) return obstack_make_room (obstack, length); } -void (obstack_grow) (obstack, pointer, length) +void (obstack_grow) (obstack, data, length) struct obstack *obstack; - POINTER pointer; + const POINTER data; int length; { - obstack_grow (obstack, pointer, length); + obstack_grow (obstack, data, length); } -void (obstack_grow0) (obstack, pointer, length) +void (obstack_grow0) (obstack, data, length) struct obstack *obstack; - POINTER pointer; + const POINTER data; int length; { - obstack_grow0 (obstack, pointer, length); + obstack_grow0 (obstack, data, length); } void (obstack_1grow) (obstack, character) @@ -581,20 +581,20 @@ POINTER (obstack_alloc) (obstack, length) return obstack_alloc (obstack, length); } -POINTER (obstack_copy) (obstack, pointer, length) +POINTER (obstack_copy) (obstack, address, length) struct obstack *obstack; - POINTER pointer; + const POINTER address; int length; { - return obstack_copy (obstack, pointer, length); + return obstack_copy (obstack, address, length); } -POINTER (obstack_copy0) (obstack, pointer, length) +POINTER (obstack_copy0) (obstack, address, length) struct obstack *obstack; - POINTER pointer; + const POINTER address; int length; { - return obstack_copy0 (obstack, pointer, length); + return obstack_copy0 (obstack, address, length); } # endif /* __STDC__ */ |