From: Bruce Momjian Date: Mon, 12 Jul 2004 01:00:45 +0000 (+0000) Subject: The outer #define was forgotten. Attached patch adds it; please apply. X-Git-Tag: REL8_0_0BETA1~223 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eba9be883ce231935c59953a1e37ed4efb85b7c5;p=postgresql The outer #define was forgotten. Attached patch adds it; please apply. Alvaro --- diff --git a/src/include/nodes/value.h b/src/include/nodes/value.h index 6f135492d3..ac017089d9 100644 --- a/src/include/nodes/value.h +++ b/src/include/nodes/value.h @@ -6,11 +6,14 @@ * * Copyright (c) 2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/nodes/value.h,v 1.1 2004/01/07 18:43:36 neilc Exp $ + * $PostgreSQL: pgsql/src/include/nodes/value.h,v 1.2 2004/07/12 01:00:45 momjian Exp $ * *------------------------------------------------------------------------- */ +#ifndef VALUE_H +#define VALUE_H + #include "nodes/nodes.h" /*---------------------- @@ -54,3 +57,5 @@ extern Value *makeInteger(long i); extern Value *makeFloat(char *numericStr); extern Value *makeString(char *str); extern Value *makeBitString(char *str); + +#endif /* VALUE_H */