Skip to content

Commit e801679

Browse files
committed
iperlsys.h,perl_inc_macro.h: Use std recursion guard name
These are the two outlier header files that didn't have their #inclusion recursion guard name end in _H. It's a small thing, but having that standard simplifies a pattern in changes I'm making to Devel::PPPort
1 parent d7e5a09 commit e801679

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

iperlsys.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
* GSAR 21-JUN-98
1010
*/
1111

12-
#ifndef __Inc__IPerl___
13-
#define __Inc__IPerl___
12+
#ifndef IPERLSYS_H
13+
#define IPERLSYS_H
1414

1515
/*
1616
* PerlXXX_YYY explained - DickH and DougL @ ActiveState.com

perl_inc_macro.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
* - INCPUSH_PERL_OTHERLIBDIRS_ARCHONLY
1818
*/
1919

20-
#ifndef DEFINE_INC_MACROS
20+
#ifndef PERL_INC_MACROS_H
2121

2222
/* protect against multiple inclusions */
23-
#define DEFINE_INC_MACROS 1
23+
#define PERL_INC_MACROS_H 1
2424

2525
#ifdef APPLLIB_EXP
2626
# define INCPUSH_APPLLIB_EXP S_incpush_use_sep(aTHX_ STR_WITH_LEN(APPLLIB_EXP), \

0 commit comments

Comments
 (0)