Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e1f31a2

Browse files
committed
added #include "config.h" for ESCAPE_PATCH define
1 parent 43eeb64 commit e1f31a2

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

src/backend/access/common/heaptuple.c

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.2 1996/08/13 01:32:26 scrappy Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.3 1996/08/27 07:42:13 scrappy Exp $
1212
*
1313
* NOTES
1414
* The old interface functions have been converted to macros
@@ -38,11 +38,9 @@
3838

3939
/* this is so the sparcstation debugger works */
4040

41-
#ifndef NO_ASSERT_CHECKING
42-
#ifdef sparc
41+
#if !defined(NO_ASSERT_CHECKING) && defined(sparc)
4342
#define register
44-
#endif /* sparc */
45-
#endif /* NO_ASSERT_CHECKING */
43+
#endif /* !NO_ASSERT_CHECKING && sparc */
4644

4745
/* ----------------------------------------------------------------
4846
* misc support routines

src/backend/commands/copy.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
*
77
*
88
* IDENTIFICATION
9-
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.5 1996/08/26 06:30:21 scrappy Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.6 1996/08/27 07:42:22 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
13+
14+
#include "config.h"
15+
1316
#include <stdio.h>
1417
#include <sys/types.h> /* for mode_t */
1518
#include <sys/stat.h> /* for umask(2) prototype */

src/backend/parser/scansup.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/parser/scansup.c,v 1.2 1996/07/23 02:23:35 scrappy Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/scansup.c,v 1.3 1996/08/27 07:42:29 scrappy Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
15+
16+
#include "config.h"
17+
1518
#include <ctype.h>
1619
#include <string.h>
1720
#include "c.h"

0 commit comments

Comments
 (0)