summaryrefslogtreecommitdiff
path: root/src/port/gettimeofday.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-06-24 18:53:48 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-06-24 18:53:48 +0000
commitfd786668ea61bc96c5d2b670e88e02650b9fb07a (patch)
treef54b0b9a6385d18c82be4dd9f9fc554dcae4bdb7 /src/port/gettimeofday.c
parentf8dd00c3efcac3c245e5eb3989b2550f9894f574 (diff)
downloadpostgresql-fd786668ea61bc96c5d2b670e88e02650b9fb07a.tar.gz
Include c.h instead of postgres.h in files that need to be usable in
both frontend and backend. Per Andreas Pflug.
Diffstat (limited to 'src/port/gettimeofday.c')
-rw-r--r--src/port/gettimeofday.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/gettimeofday.c b/src/port/gettimeofday.c
index fd4200d04d..3b6871c304 100644
--- a/src/port/gettimeofday.c
+++ b/src/port/gettimeofday.c
@@ -1,5 +1,5 @@
/*
- * $PostgreSQL: pgsql/src/port/gettimeofday.c,v 1.4 2004/05/21 05:08:05 tgl Exp $
+ * $PostgreSQL: pgsql/src/port/gettimeofday.c,v 1.5 2004/06/24 18:53:48 tgl Exp $
*
* Copyright (c) 2003 SRA, Inc.
* Copyright (c) 2003 SKC, Inc.
@@ -23,7 +23,7 @@
* SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
-#include "postgres.h"
+#include "c.h"
#include <sys/time.h>