From: Tom Lane Date: Sun, 7 Feb 1999 22:04:57 +0000 (+0000) Subject: Correct definition of srandom() --- it takes unsigned int not int. X-Git-Tag: REL6_5~700 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5212ef8e46dd89b6e5ed281c286910bb6e37d985;p=postgresql Correct definition of srandom() --- it takes unsigned int not int. --- diff --git a/src/include/config.h.in b/src/include/config.h.in index ce01ecd0a2..41468c1d35 100644 --- a/src/include/config.h.in +++ b/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 */