summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2007-09-03 14:37:03 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2007-09-03 14:37:03 +0000
commit166c3541d324a24a53c683fea45c202fa80e9a06 (patch)
tree4c818d106319c9d0b7cf9f86df2f457104e623b9 /include
parentce1239c9976aa8f3748a2143bb12a543a27293e4 (diff)
add recaloc(3)
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 9124a884d0e..bf3a88e05da 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.39 2006/09/17 16:48:04 djm Exp $ */
+/* $OpenBSD: stdlib.h,v 1.40 2007/09/03 14:37:02 millert Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -128,6 +128,7 @@ void *malloc(size_t);
void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
int rand(void);
void *realloc(void *, size_t);
+void *recalloc(void *, size_t, size_t);
void srand(unsigned);
double strtod(const char *, char **);
long strtol(const char *, char **, int);