diff options
author | Tom Lane | 2006-07-14 05:28:29 +0000 |
---|---|---|
committer | Tom Lane | 2006-07-14 05:28:29 +0000 |
commit | ae643747b16a6ffed88323338dcd3b7ed918e3d0 (patch) | |
tree | be809ebdd630bd1821dbd4a594fd7504a78009a8 /src/timezone | |
parent | 51e888219745cf9efa41034b5411eee7e9a8f4f1 (diff) |
Fix a passel of recently-committed violations of the rule 'thou shalt
have no other gods before c.h'. Also remove some demonstrably redundant
#include lines, mostly of <errno.h> which was added to c.h years ago.
Diffstat (limited to 'src/timezone')
-rw-r--r-- | src/timezone/pgtz.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/timezone/pgtz.c b/src/timezone/pgtz.c index 65de3c0dfce..8d369695ccd 100644 --- a/src/timezone/pgtz.c +++ b/src/timezone/pgtz.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.42 2006/07/14 04:59:30 momjian Exp $ + * $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.43 2006/07/14 05:28:29 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -24,7 +24,6 @@ #include "storage/fd.h" #include "tzfile.h" #include "utils/datetime.h" -#include "utils/elog.h" #include "utils/guc.h" #include "utils/hsearch.h" |