diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-07-09 02:47:42 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-07-09 02:47:42 +0000 |
commit | f8fc0dd6495308582e5a098ee4488839779d6c55 (patch) | |
tree | 5e1d3c095fb11b9bb6e0b86f4c0950673db0b099 /stdlib | |
parent | 999493cb4a497063c1cb2354a95db21c7ab496f2 (diff) | |
download | glibc-f8fc0dd6495308582e5a098ee4488839779d6c55.zip glibc-f8fc0dd6495308582e5a098ee4488839779d6c55.tar.gz glibc-f8fc0dd6495308582e5a098ee4488839779d6c55.tar.bz2 |
* stdlib/stdlib.h (random): Declare return type to be int32_t.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 876fcc2..1feedcf 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -227,14 +227,14 @@ extern __ptr_t __initstate __P ((unsigned int __seed, __ptr_t __statebuf, which should have been previously initialized by `initstate'. */ extern __ptr_t __setstate __P ((__ptr_t __statebuf)); -extern long int random __P ((void)); +extern int32_t random __P ((void)); extern void srandom __P ((unsigned int __seed)); extern __ptr_t initstate __P ((unsigned int __seed, __ptr_t __statebuf, size_t __statelen)); extern __ptr_t setstate __P ((__ptr_t __statebuf)); #if defined (__OPTIMIZE__) && __GNUC__ >= 2 -extern __inline long int random (void) +extern __inline int32_t random (void) { return __random(); } extern __inline void srandom (unsigned int __seed) { __srandom(__seed); } |