1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Rename config.h to pg_config.h and os.h to pg_config_os.h, fix a number of

places that were including the wrong files.
This commit is contained in:
Peter Eisentraut
2001-08-24 14:07:50 +00:00
parent 7326e78c42
commit 968d7733a1
76 changed files with 575 additions and 644 deletions

View File

@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/int8.c,v 1.31 2001/08/14 22:21:58 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/int8.c,v 1.32 2001/08/24 14:07:49 petere Exp $
*
*-------------------------------------------------------------------------
*/
@ -21,7 +21,7 @@
#include "utils/int8.h"
/* this should be set in config.h, but just in case it wasn't: */
/* this should be set in pg_config.h, but just in case it wasn't: */
#ifndef INT64_FORMAT
#define INT64_FORMAT "%ld"
#endif