diff options
author | ache <ache@FreeBSD.org> | 2001-04-23 09:32:06 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-04-23 09:32:06 +0000 |
commit | 02fc5bae58266ec2eada38a0cb150b52355d2e0a (patch) | |
tree | fd973fd4f2640d426b318e6efc2d07e3670ad5d8 /include | |
parent | 1f5de3071891f86c0e7d51efde6705f5b8ac2959 (diff) | |
download | FreeBSD-src-02fc5bae58266ec2eada38a0cb150b52355d2e0a.zip FreeBSD-src-02fc5bae58266ec2eada38a0cb150b52355d2e0a.tar.gz |
Move sranddev() to !ANSI_SOURCE !POSIX_SOURCE section
Pointed out by: bde
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index fe8b6a5..4d5ed30 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -102,7 +102,6 @@ void qsort __P((void *, size_t, size_t, int rand __P((void)); void *realloc __P((void *, size_t)); void srand __P((unsigned)); -void sranddev __P((void)); double strtod __P((const char *, char **)); long strtol __P((const char *, char **, int)); long long @@ -175,6 +174,7 @@ void *reallocf __P((void *, size_t)); char *realpath __P((const char *, char resolved_path[])); char *setstate __P((char *)); void srandom __P((unsigned long)); +void sranddev __P((void)); void srandomdev __P((void)); char *user_from_uid __P((unsigned long, int)); #ifndef __STRICT_ANSI__ |