Skip to content

Commit d1747a5

Browse files
peterejkeenan
authored andcommitted
Avoid gratuitous warning from -Wundef
Use #ifdef instead of #if to avoid warning if a user of this header file uses the gcc -Wundef option. Committer: Peter Eisentraut is now a Perl author. For: RT 134494
1 parent 67eb585 commit d1747a5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ Peter BARABAS
990990
Peter Chines <[email protected]>
991991
Peter Dintelmann <[email protected]>
992992
Peter E. Yee <[email protected]>
993+
Peter Eisentraut <[email protected]>
993994
Peter Gessner <[email protected]>
994995
Peter Gordon <[email protected]>
995996
Peter Haworth <[email protected]>

perl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ any magic.
14681468

14691469
#define UNKNOWN_ERRNO_MSG "(unknown)"
14701470

1471-
#if VMS
1471+
#ifdef VMS
14721472
#define Strerror(e) strerror((e), vaxc$errno)
14731473
#else
14741474
#define Strerror(e) strerror(e)

0 commit comments

Comments
 (0)