diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/pldd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/elf/pldd.c b/elf/pldd.c index 255326ef70..51a3f440b6 100644 --- a/elf/pldd.c +++ b/elf/pldd.c @@ -44,8 +44,10 @@ extern char *program_invocation_short_name; #define PACKAGE _libc_intl_domainname /* External functions. */ -extern void *xmalloc (size_t n); -extern void *xrealloc (void *p, size_t n); +extern void *xmalloc (size_t n) + __attribute_malloc__ __attribute_alloc_size (1); +extern void *xrealloc (void *o, size_t n) + __attribute_malloc__ __attribute_alloc_size (2); /* Name and version of program. */ static void print_version (FILE *stream, struct argp_state *state); |