diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 10:15:25 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 10:15:25 +0000 |
commit | b49d41884f02efb86a063c06a621b184b0b39e91 (patch) | |
tree | ab3e10ef2885b02b292bbba92f44dca81a3f056a | |
parent | 9f5eac1f97e813d56d0288a5c21bf85ba64b1c9e (diff) | |
download | postgresql-b49d41884f02efb86a063c06a621b184b0b39e91.tar.gz postgresql-b49d41884f02efb86a063c06a621b184b0b39e91.zip |
Add prototype for: int DebugFileOpen()
-rw-r--r-- | src/include/utils/elog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 4db2ced26ce..8968a65dec6 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: elog.h,v 1.1 1996/08/28 01:58:52 scrappy Exp $ + * $Id: elog.h,v 1.2 1996/11/06 10:15:25 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -34,5 +34,8 @@ /* #define ELOG_TIMESTAMPS */ extern void elog(int lev, const char *fmt, ...); +#ifndef PG_STANDALONE +int DebugFileOpen(); +#endif #endif /* ELOG_H */ |