diff options
| author | Ed Schouten <ed@FreeBSD.org> | 2016-07-26 20:11:29 +0000 |
|---|---|---|
| committer | Ed Schouten <ed@FreeBSD.org> | 2016-07-26 20:11:29 +0000 |
| commit | 8de6c267117c2eb423b1a940601d8e4d525c5f4d (patch) | |
| tree | 9fb8e0db1cc1b9b7808e6bff91a4cac6ebc5c2a2 /include | |
| parent | 7ee4fff4e727dabec12103be0e1c712e355be3af (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index e0c20f766d2b1..cc6941b020143 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -204,7 +204,7 @@ double erand48(unsigned short[3]); /* char *fcvt(double, int, int * __restrict, int * __restrict); */ /* char *gcvt(double, int, int * __restrict, int * __restrict); */ int grantpt(int); -char *initstate(unsigned long /* XSI requires u_int */, char *, long); +char *initstate(unsigned int, char *, size_t); long jrand48(unsigned short[3]); char *l64a(long); void lcong48(unsigned short[7]); @@ -227,7 +227,7 @@ int setkey(const char *); #endif char *setstate(/* const */ char *); void srand48(long); -void srandom(unsigned long); +void srandom(unsigned int); int unlockpt(int); #endif /* __XSI_VISIBLE */ |
