Add function prototypes.

This commit is contained in:
Matthew N. Dodd 2003-06-19 05:28:26 +00:00
parent f96c24256c
commit 5407dd5b82
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116568

View File

@ -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)