diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-31 23:22:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-31 23:22:07 +0000 |
commit | 8dbb1c6595ac7eab11c8d8d1706eba852adf4f56 (patch) | |
tree | 248190002e250667482afb7dc601a81b657b7834 /gdb/utils.c | |
parent | 8731e58ec78462405054a5229a108dc5fda8418a (diff) | |
download | gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.zip gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.tar.gz gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.tar.bz2 |
2003-01-31 Andrew Cagney <ac131313@redhat.com>
* objc-exp.y, c-exp.y, f-exp.y: Remove PTR casts.
* utils.c: Update comments documenting legitimate uses of PTR.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index 9b047bc..e7353bf 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -66,10 +66,10 @@ #endif #ifdef NEED_DECLARATION_MALLOC -extern PTR malloc (); +extern PTR malloc (); /* OK: PTR */ #endif #ifdef NEED_DECLARATION_REALLOC -extern PTR realloc (); +extern PTR realloc (); /* OK: PTR */ #endif #ifdef NEED_DECLARATION_FREE extern void free (); @@ -955,9 +955,6 @@ request_quit (int signo) #if !defined (USE_MMALLOC) -/* NOTE: These must use PTR so that their definition matches the - declaration found in "mmalloc.h". */ - static void * mmalloc (void *md, size_t size) { @@ -1150,19 +1147,19 @@ xmfree (void *md, void *ptr) /* NOTE: These are declared using PTR to ensure consistency with "libiberty.h". xfree() is GDB local. */ -PTR +PTR /* OK: PTR */ xmalloc (size_t size) { return xmmalloc (NULL, size); } -PTR -xrealloc (PTR ptr, size_t size) +PTR /* OK: PTR */ +xrealloc (PTR ptr, size_t size) /* OK: PTR */ { return xmrealloc (NULL, ptr, size); } -PTR +PTR /* OK: PTR */ xcalloc (size_t number, size_t size) { return xmcalloc (NULL, number, size); |