diff options
| author | Tom Lane | 1999-02-07 22:04:57 +0000 |
|---|---|---|
| committer | Tom Lane | 1999-02-07 22:04:57 +0000 |
| commit | 5212ef8e46dd89b6e5ed281c286910bb6e37d985 (patch) | |
| tree | db47cc14e98e7e81f96207d691c58b1e7a6b1121 /src/include/config.h.in | |
| parent | 04075a0c60fe3611cb48831cd1b922d7467ef277 (diff) | |
Correct definition of srandom() --- it takes unsigned int not int.
Diffstat (limited to 'src/include/config.h.in')
| -rw-r--r-- | src/include/config.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index ce01ecd0a2f..41468c1d352 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 */ |
