projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04075a0
)
Correct definition of srandom() --- it takes unsigned int not int.
author
Tom Lane
Sun, 7 Feb 1999 22:04:57 +0000
(22:04 +0000)
committer
Tom Lane
Sun, 7 Feb 1999 22:04:57 +0000
(22:04 +0000)
src/include/config.h.in
patch
|
blob
|
blame
|
history
diff --git
a/src/include/config.h.in
b/src/include/config.h.in
index ce01ecd0a2fab7e0bcd69167cd5b502f211686ae..41468c1d352c4cdfde8e411c1e0e1b9466894dde 100644
(file)
--- 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 */