mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Correct definition of srandom() --- it takes unsigned int not int.
This commit is contained in:
@ -237,7 +237,7 @@ extern long random(void);
|
|||||||
/* Set to 1 if you have srandom() */
|
/* Set to 1 if you have srandom() */
|
||||||
#undef HAVE_SRANDOM
|
#undef HAVE_SRANDOM
|
||||||
#ifndef HAVE_SRANDOM
|
#ifndef HAVE_SRANDOM
|
||||||
extern void srandom(int seed);
|
extern void srandom(unsigned int seed);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Set to 1 if you have libreadline.a */
|
/* Set to 1 if you have libreadline.a */
|
||||||
|
Reference in New Issue
Block a user