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

Commit f8fc37b

Browse files
committed
Add markers for skips.
1 parent ac5f11e commit f8fc37b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/backend/port/darwin/system.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* src/backend/port/darwin/system.c
33
*
44
* only needed in OS X 10.1 and possibly early 10.2 releases */
5-
#include <AvailabilityMacros.h>
5+
#include <AvailabilityMacros.h> /* pgrminclude ignore */
66
#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_2 || !defined(MAC_OS_X_VERSION_10_2)
77

88
/*

src/backend/port/dynloader/nextstep.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef PORT_PROTOS_H
1010
#define PORT_PROTOS_H
1111

12-
#include "utils/dynamic_loader.h"
12+
#include "utils/dynamic_loader.h" /* pgrminclude ignore */
1313

1414
void *next_dlopen(char *name);
1515
int next_dlclose(void *handle);

src/backend/port/dynloader/win32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#ifndef PORT_PROTOS_H
55
#define PORT_PROTOS_H
66

7-
#include "utils/dynamic_loader.h"
7+
#include "utils/dynamic_loader.h" /* pgrminclude ignore */
88

99
#define pg_dlopen(f) dlopen((f), 1)
1010
#define pg_dlsym dlsym

src/backend/regex/regerror.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static struct rerr
4646

4747
{
4848
/* the actual table is built from regex.h */
49-
#include "regex/regerrs.h"
49+
#include "regex/regerrs.h" /* pgrminclude ignore */
5050
{
5151
-1, "", "oops"
5252
}, /* explanation special-cased in code */

src/include/snowball/header.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#endif
3434

3535
/* Now we can include the original Snowball header.h */
36-
#include "snowball/libstemmer/header.h"
36+
#include "snowball/libstemmer/header.h" /* pgrminclude ignore */
3737

3838
/*
3939
* Redefine standard memory allocation interface to pgsql's one.

0 commit comments

Comments
 (0)