diff options
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index f08f56633d0..984bf14fca5 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.157 2003/11/29 22:40:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.158 2003/12/20 17:31:21 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -793,6 +793,13 @@ extern int fdatasync(int fildes); #define HAVE_STRTOULL 1 #endif +/* EXEC_BACKEND defines */ +#ifdef EXEC_BACKEND +#define NON_EXEC_STATIC +#else +#define NON_EXEC_STATIC static +#endif + /* /port compatibility functions */ #include "port.h" |