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

REL6_5_PATCHES
Tom Lane 27 years ago
parent 04075a0c60
commit 5212ef8e46
  1. 2
      src/include/config.h.in

@ -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…
Cancel
Save