diff options
author | ats <ats@FreeBSD.org> | 1994-11-21 09:25:58 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1994-11-21 09:25:58 +0000 |
commit | d32611e1ea3e8500ddda65478e0473068c8941f0 (patch) | |
tree | 0677c1aaf4ce977cccc23e90934ce396582f4fd1 /include | |
parent | 1a22f052cfeea353e1b0791804ebd20826a85781 (diff) | |
download | FreeBSD-src-d32611e1ea3e8500ddda65478e0473068c8941f0.zip FreeBSD-src-d32611e1ea3e8500ddda65478e0473068c8941f0.tar.gz |
Reviewed by: Bruce Evans
Add prototypes for the *rand48 family here in the moment to get them
running again.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 31fa8e3..fda6f96 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -122,6 +122,16 @@ int setenv __P((const char *, const char *, int)); #endif #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE) +double drand48 __P((void)); +double erand48 __P((unsigned short[3])); +long lrand48 __P((void)); +long nrand48 __P((unsigned short[3])); +long mrand48 __P((void)); +long jrand48 __P((unsigned short[3])); +void srand48 __P((long)); +unsigned short *seed48 __P((unsigned short[3])); +void lcong48 __P((unsigned short[7])); + void *alloca __P((size_t)); /* built-in for gcc */ /* getcap(3) functions */ char *getbsize __P((int *, long *)); |