diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-18 18:28:33 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-18 18:28:33 +0000 |
commit | 9caf84bc00ee6759d35556bdadcec71721198ce2 (patch) | |
tree | e5b7225fde1696024d0f19e9a5dc6f5660b49527 /src/backend/include/postgres.h | |
parent | 1c5fa955cdf5999bcb941130f02528090a37981e (diff) | |
download | postgresql-9caf84bc00ee6759d35556bdadcec71721198ce2.tar.gz postgresql-9caf84bc00ee6759d35556bdadcec71721198ce2.zip |
#include "postgres.h" is a standard include for all .c files, auto-including
config.h, c.h *and* elog.h...added elog.h
Diffstat (limited to 'src/backend/include/postgres.h')
-rw-r--r-- | src/backend/include/postgres.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/include/postgres.h b/src/backend/include/postgres.h index 89cebc473b5..6ad293cd29b 100644 --- a/src/backend/include/postgres.h +++ b/src/backend/include/postgres.h @@ -6,7 +6,7 @@ * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.4 1996/09/23 08:38:45 scrappy Exp $ + * $Id: postgres.h,v 1.5 1996/10/18 18:28:33 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -38,6 +38,7 @@ #include "config.h" #include "c.h" +#include "utils/elog.h" /* ---------------------------------------------------------------- * Section 1: simple type definitions |