diff options
author | mdodd <mdodd@FreeBSD.org> | 2003-06-19 05:28:26 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 2003-06-19 05:28:26 +0000 |
commit | 9e70570ef3d1660662b5f58378faa263f2af991e (patch) | |
tree | 0830bd778fb44e0623704d26209a5cc92a8f816a /libexec | |
parent | b7443e8befb7e2364b9e1670650819a5b86f5327 (diff) | |
download | FreeBSD-src-9e70570ef3d1660662b5f58378faa263f2af991e.zip FreeBSD-src-9e70570ef3d1660662b5f58378faa263f2af991e.tar.gz |
Add function prototypes.
Diffstat (limited to 'libexec')
-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 d6da334..7ee4c57 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) |