summaryrefslogtreecommitdiff
path: root/lib/libc/compat/include/stdlib.h
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2014-06-12 18:44:36 +0000
committerchristos <christos@NetBSD.org>2014-06-12 18:44:36 +0000
commit71a3ecffa7fbf96e2beb2b11c7da4f8e61a60362 (patch)
tree35d2c33464a8771f9d389f505fd816939a49b4e5 /lib/libc/compat/include/stdlib.h
parent1b059b4c7f13d55d75ae539d4d2871c6cf493020 (diff)
fix srandom and initstate signatures (from enh at google)
Diffstat (limited to 'lib/libc/compat/include/stdlib.h')
-rw-r--r--lib/libc/compat/include/stdlib.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/compat/include/stdlib.h b/lib/libc/compat/include/stdlib.h
index 0f713405a51..fcbc4f989a3 100644
--- a/lib/libc/compat/include/stdlib.h
+++ b/lib/libc/compat/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stdlib.h,v 1.5 2012/04/20 17:31:29 christos Exp $ */
+/* $NetBSD: stdlib.h,v 1.6 2014/06/12 18:44:36 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -42,6 +42,10 @@ int putenv(char *);
int __putenv50(char *);
__aconst char *devname(int32_t, mode_t);
__aconst char *__devname50(dev_t, mode_t);
+char *initstate(unsigned long, char *, size_t);
+char *__initstate70(unsigned int, char *, size_t);
+void srandom(unsigned long);
+void __srandom70(unsigned int);
__END_DECLS