mirror of
https://github.com/postgres/postgres.git
synced 2026-06-07 07:42:18 -04:00
Correct definition of srandom() --- it takes unsigned int not int.
This commit is contained in:
parent
04075a0c60
commit
5212ef8e46
1 changed files with 1 additions and 1 deletions
|
|
@ -237,7 +237,7 @@ extern long random(void);
|
|||
/* Set to 1 if you have srandom() */
|
||||
#undef HAVE_SRANDOM
|
||||
#ifndef HAVE_SRANDOM
|
||||
extern void srandom(int seed);
|
||||
extern void srandom(unsigned int seed);
|
||||
#endif
|
||||
|
||||
/* Set to 1 if you have libreadline.a */
|
||||
|
|
|
|||
Loading…
Reference in a new issue