Skip to content

Commit e8ca9ed

Browse files
committed
Don't use double-quotes in #include's of system headers.
While few if any C compilers will complain about this, it's inconsistent with our other #include's of the same headers. There are some other questionable usages in src/include/jit/SectionMemoryManager.h and src/pl/plperl/plperl_system.h, but perhaps those have a reason to be like that. I can't see that these do. Noticed while fooling around with a script to do analysis of our header cross-inclusions.
1 parent 9364574 commit e8ca9ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/storage/pmsignal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
#include <signal.h>
1818

1919
#ifdef HAVE_SYS_PRCTL_H
20-
#include "sys/prctl.h"
20+
#include <sys/prctl.h>
2121
#endif
2222

2323
#ifdef HAVE_SYS_PROCCTL_H
24-
#include "sys/procctl.h"
24+
#include <sys/procctl.h>
2525
#endif
2626

2727
/*

0 commit comments

Comments
 (0)