Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hv_func.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* If USE_HASH_SEED is defined, hash randomisation is done by default
* (see also perl.c:perl_parse() and S_init_tls_and_interp() and util.c:get_hash_seed())
*/
#ifndef PERL_SEEN_HV_FUNC_H_ /* compile once */
#define PERL_SEEN_HV_FUNC_H_
#ifndef PERL_HV_FUNC_H_ /* compile once */
#define PERL_HV_FUNC_H_
#include "hv_macro.h"

#if !( 0 \
Expand Down
4 changes: 2 additions & 2 deletions hv_macro.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef PERL_SEEN_HV_MACRO_H_ /* compile once */
#define PERL_SEEN_HV_MACRO_H_
#ifndef PERL_HV_MACRO_H_ /* compile once */
#define PERL_HV_MACRO_H_

#if IVSIZE == 8
#define CAN64BITHASH
Expand Down
4 changes: 2 additions & 2 deletions perl_inc_macro.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
* - INCPUSH_PERL_OTHERLIBDIRS_ARCHONLY
*/

#ifndef PERL_INC_MACROS_H
#ifndef PERL_INC_MACRO_H

/* protect against multiple inclusions */
#define PERL_INC_MACROS_H 1
#define PERL_INC_MACRO_H 1

#ifdef APPLLIB_EXP
# define INCPUSH_APPLLIB_EXP S_incpush_use_sep(aTHX_ STR_WITH_LEN(APPLLIB_EXP), \
Expand Down
6 changes: 3 additions & 3 deletions regcomp_internal.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef REGCOMP_INTERNAL_H
#define REGCOMP_INTERNAL_H
#ifndef PERL_REGCOMP_INTERNAL_H
#define PERL_REGCOMP_INTERNAL_H
#ifndef STATIC
#define STATIC static
#endif
Expand Down Expand Up @@ -1216,4 +1216,4 @@ static const scan_data_t zero_scan_data = {
#define REGNODE_STEP_OVER(ret,t1,t2) \
NEXT_OFF(REGNODE_p(ret)) = ((sizeof(t1)+sizeof(t2))/sizeof(regnode))

#endif /* REGCOMP_INTERNAL_H */
#endif /* PERL_REGCOMP_INTERNAL_H */
2 changes: 1 addition & 1 deletion sbox32_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define SBOX32_WARN2(pat,v0,v1)
#endif

#ifndef PERL_SEEN_HV_FUNC_H_
#ifndef PERL_HV_FUNC_H_
#if !defined(U32)
#include <stdint.h>
#define U32 uint32_t
Expand Down
2 changes: 1 addition & 1 deletion zaphod32_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#endif
#endif

#ifndef PERL_SEEN_HV_FUNC_H_
#ifndef PERL_HV_FUNC_H_
#if !defined(U64)
#include <stdint.h>
#define U64 uint64_t
Expand Down
Loading