diff options
Diffstat (limited to 'src/include/utils/elog.h')
-rw-r--r-- | src/include/utils/elog.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 190d44cfff2..94dc8330b11 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: elog.h,v 1.16 2000/04/12 17:16:54 momjian Exp $ + * $Id: elog.h,v 1.17 2000/05/31 00:28:40 petere Exp $ * *------------------------------------------------------------------------- */ @@ -23,6 +23,10 @@ #define LOG DEBUG #define NOIND (-3) /* debug message, don't indent as far */ +#ifdef ENABLE_SYSLOG +extern int Use_syslog; +#endif + #ifndef __GNUC__ extern void elog(int lev, const char *fmt,...); |