mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Add back improperly removed #include for config.h.
This probably ought to be kept in *all* the port files, but these two are the only ones that generated compiler warnings for me ...
This commit is contained in:
@ -1,9 +1,11 @@
|
|||||||
/* $Id: random.c,v 1.8 1999/07/16 03:13:06 momjian Exp $ */
|
/* $Id: random.c,v 1.9 1999/07/16 23:09:45 tgl Exp $ */
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
long
|
long
|
||||||
random()
|
random()
|
||||||
{
|
{
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
/* $Id: srandom.c,v 1.8 1999/07/16 03:13:08 momjian Exp $ */
|
/* $Id: srandom.c,v 1.9 1999/07/16 23:09:45 tgl Exp $ */
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
srandom(unsigned int seed)
|
srandom(unsigned int seed)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user