diff options
| author | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-06-19 05:28:26 +0000 |
|---|---|---|
| committer | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-06-19 05:28:26 +0000 |
| commit | 5407dd5b821a7700926705cd04fdd1b59fc88b11 (patch) | |
| tree | 0830bd778fb44e0623704d26209a5cc92a8f816a | |
| parent | f96c24256c63e07d37b0b4fed8ea58d7087ae44d (diff) | |
Notes
| -rw-r--r-- | libexec/rtld-elf/xmalloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libexec/rtld-elf/xmalloc.c b/libexec/rtld-elf/xmalloc.c index d6da3340bfd0..7ee4c570c6b8 100644 --- a/libexec/rtld-elf/xmalloc.c +++ b/libexec/rtld-elf/xmalloc.c @@ -30,7 +30,9 @@ #include <stdlib.h> #include <string.h> +void *xcalloc(size_t); void *xmalloc(size_t); +char *xstrdup(const char *); void * xcalloc(size_t size) |
