1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Replace direct inclusions of c.h with inclusion of postgres.h,

to ensure that config.h is included as well.
This commit is contained in:
Tom Lane
1999-01-17 03:04:57 +00:00
parent 4e34686a36
commit 21badba151
10 changed files with 18 additions and 19 deletions

View File

@@ -7,13 +7,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.8 1999/01/01 04:48:46 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.9 1999/01/17 03:04:52 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include <stdio.h>
#include <stdarg.h>
#include "c.h"
#include "postgres.h"
#define FormMaxSize 1024
#define FormMinSize (FormMaxSize / 8)