diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-05 00:43:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-05 00:43:07 +0000 |
commit | 52c9d259335c9670f6487c5f40fc53b57a4c7b17 (patch) | |
tree | 721b585843dca83ac9517ca933fa891c4532a530 /src/include/commands/dbcommands.h | |
parent | 3f63787cbfe0f1e837c92cd8ac35fd7ab811c18b (diff) | |
download | postgresql-52c9d259335c9670f6487c5f40fc53b57a4c7b17.tar.gz postgresql-52c9d259335c9670f6487c5f40fc53b57a4c7b17.zip |
Be careful to include postgres.h *before* any system headers, to ensure
that the right flavors of largefile-related definitions are seen.
Most of these changes are probably unnecessary, but better safe than
sorry.
Diffstat (limited to 'src/include/commands/dbcommands.h')
-rw-r--r-- | src/include/commands/dbcommands.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h index 89e3f471f7a..a1a2a8da538 100644 --- a/src/include/commands/dbcommands.h +++ b/src/include/commands/dbcommands.h @@ -7,14 +7,14 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: dbcommands.h,v 1.25 2002/08/09 16:45:16 tgl Exp $ + * $Id: dbcommands.h,v 1.26 2002/09/05 00:43:07 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef DBCOMMANDS_H #define DBCOMMANDS_H -#include <nodes/parsenodes.h> +#include "nodes/parsenodes.h" extern void createdb(const CreatedbStmt *stmt); extern void dropdb(const char *dbname); |