diff options
| author | christos <christos@NetBSD.org> | 1997-07-13 18:01:53 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1997-07-13 18:01:53 +0000 |
| commit | efac03b6a6f0d3769bb89b1ca6f7a0095f86cb72 (patch) | |
| tree | d64125875ef12614685b04997f1b9b5bcb2c61b3 /include | |
| parent | c60b6531c36f20d733ac23d1619565aa3d9b240d (diff) | |
Add missing rand_r prototype
Diffstat (limited to 'include')
| -rw-r--r-- | include/stdlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 1a9f01de3b9..de2408ac860 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ +/* $NetBSD: stdlib.h,v 1.26 1997/07/13 18:01:53 christos Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -104,6 +104,7 @@ void *malloc __P((size_t)); void qsort __P((void *, size_t, size_t, int (*)(const void *, const void *))); int rand __P((void)); +int rand_r __P((unsigned int *)); void *realloc __P((void *, size_t)); void srand __P((unsigned)); double strtod __P((const char *, char **)); |
