diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2005-04-19 18:26:43 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2005-04-19 18:26:43 +0000 |
commit | 8766be86859c2377be11ddcc28fbb966c24033b6 (patch) | |
tree | 94e3ebdcb26d7ee52039b497fe251f42669043ec /include/libiberty.h | |
parent | 2586bf38d81521841f2f743ebabd445b489c3060 (diff) | |
download | gcc-8766be86859c2377be11ddcc28fbb966c24033b6.tar.gz |
hashtab.h, [...]: Don't use the PTR macro.
* hashtab.h, libiberty.h, objalloc.h, splay-tree.h, ternary.h:
Don't use the PTR macro.
* sort.h: Don't use the PARAMS macro.
From-SVN: r98416
Diffstat (limited to 'include/libiberty.h')
-rw-r--r-- | include/libiberty.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/libiberty.h b/include/libiberty.h index 8254aafab0f..df36cdc8ab3 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -259,18 +259,18 @@ extern void xmalloc_failed (size_t) ATTRIBUTE_NORETURN; message to stderr (using the name set by xmalloc_set_program_name, if any) and then call xexit. */ -extern PTR xmalloc (size_t) ATTRIBUTE_MALLOC; +extern void *xmalloc (size_t) ATTRIBUTE_MALLOC; /* Reallocate memory without fail. This works like xmalloc. Note, realloc type functions are not suitable for attribute malloc since they may return the same address across multiple calls. */ -extern PTR xrealloc (PTR, size_t); +extern void *xrealloc (void *, size_t); /* Allocate memory without fail and set it to zero. This works like xmalloc. */ -extern PTR xcalloc (size_t, size_t) ATTRIBUTE_MALLOC; +extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC; /* Copy a string into a memory buffer without fail. */ @@ -282,7 +282,7 @@ extern char *xstrndup (const char *, size_t) ATTRIBUTE_MALLOC; /* Copy an existing memory buffer to a new memory buffer without fail. */ -extern PTR xmemdup (const PTR, size_t, size_t) ATTRIBUTE_MALLOC; +extern void *xmemdup (const void *, size_t, size_t) ATTRIBUTE_MALLOC; /* Physical memory routines. Return values are in BYTES. */ extern double physmem_total (void); @@ -530,7 +530,7 @@ extern int vasprintf (char **, const char *, va_list) USE_C_ALLOCA yourself. The canonical autoconf macro C_ALLOCA is also set/unset as it is often used to indicate whether code needs to call alloca(0). */ -extern PTR C_alloca (size_t) ATTRIBUTE_MALLOC; +extern void *C_alloca (size_t) ATTRIBUTE_MALLOC; #undef alloca #if GCC_VERSION >= 2000 && !defined USE_C_ALLOCA # define alloca(x) __builtin_alloca(x) |