diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-08-24 14:07:50 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-08-24 14:07:50 +0000 |
commit | 968d7733a19cda3db16947024bd335d877b3d9c3 (patch) | |
tree | a39593b292dbfcaad45924e9a20ae90300167524 /src/backend/port/srandom.c | |
parent | 7326e78c4249393359edce09f555aaa049be2a80 (diff) | |
download | postgresql-968d7733a19cda3db16947024bd335d877b3d9c3.tar.gz postgresql-968d7733a19cda3db16947024bd335d877b3d9c3.zip |
Rename config.h to pg_config.h and os.h to pg_config_os.h, fix a number of
places that were including the wrong files.
Diffstat (limited to 'src/backend/port/srandom.c')
-rw-r--r-- | src/backend/port/srandom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/port/srandom.c b/src/backend/port/srandom.c index eb16736d4ce..5f61088be69 100644 --- a/src/backend/port/srandom.c +++ b/src/backend/port/srandom.c @@ -1,11 +1,11 @@ -/* $Id: srandom.c,v 1.9 1999/07/16 23:09:45 tgl Exp $ */ +/* $Id: srandom.c,v 1.10 2001/08/24 14:07:49 petere Exp $ */ + +#include "c.h" #include <stdlib.h> #include <math.h> #include <errno.h> -#include "config.h" - void srandom(unsigned int seed) { |