summaryrefslogtreecommitdiff
path: root/src/include/utils/guc.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-10-19 18:32:48 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-10-19 18:32:48 +0000
commitdef651f48f6e8e8e2bc8bb604d443f4c10136d5f (patch)
tree1772397307ecfee9c2563c34cf4fda0bd5b17d77 /src/include/utils/guc.h
parentfd38d726a962e697e14b8979eaddabd84ba4b789 (diff)
Clean up local redeclarations of variables with DLLIMPORT, per report
from Magnus that MSVC complains about this.
Diffstat (limited to 'src/include/utils/guc.h')
-rw-r--r--src/include/utils/guc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h
index 403d022b7a7..db048bf50bb 100644
--- a/src/include/utils/guc.h
+++ b/src/include/utils/guc.h
@@ -7,7 +7,7 @@
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
- * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.75 2006/08/14 02:27:27 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.76 2006/10/19 18:32:47 tgl Exp $
*--------------------------------------------------------------------
*/
#ifndef GUC_H
@@ -115,9 +115,9 @@ extern bool log_executor_stats;
extern bool log_statement_stats;
extern bool log_btree_build_stats;
-extern bool SQL_inheritance;
-
+extern DLLIMPORT bool check_function_bodies;
extern bool default_with_oids;
+extern bool SQL_inheritance;
extern int log_min_error_statement;
extern int log_min_messages;