diff options
author | Tom Lane | 2007-10-26 13:30:10 +0000 |
---|---|---|
committer | Tom Lane | 2007-10-26 13:30:10 +0000 |
commit | 8164fb88875c7160dbdb9480df7e24eccfb356fb (patch) | |
tree | 3d4c1e67c40277e15b811c7e34ef1dccc7f73aad /src/timezone/zic.c | |
parent | 350196df4ab96d2f568666fc7a86323a27f4d138 (diff) |
Avoid including any backend-only stuff in the zic utility program.
Per gripe from Zdenek Kotala, though not exactly his patch.
Diffstat (limited to 'src/timezone/zic.c')
-rw-r--r-- | src/timezone/zic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timezone/zic.c b/src/timezone/zic.c index 08237965e4f..2c553c0b120 100644 --- a/src/timezone/zic.c +++ b/src/timezone/zic.c @@ -3,10 +3,10 @@ * 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov). * * IDENTIFICATION - * $PostgreSQL: pgsql/src/timezone/zic.c,v 1.21 2007/02/01 19:10:30 momjian Exp $ + * $PostgreSQL: pgsql/src/timezone/zic.c,v 1.22 2007/10/26 13:30:10 tgl Exp $ */ -#include "postgres.h" +#include "postgres_fe.h" #ifdef HAVE_GETOPT_H #include <getopt.h> |