Correct definition of srandom() --- it takes unsigned int not int.

This commit is contained in:
Tom Lane 1999-02-07 22:04:57 +00:00
parent 04075a0c60
commit 5212ef8e46
1 changed files with 1 additions and 1 deletions

View File

@ -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 */