summaryrefslogtreecommitdiff
path: root/XSUB.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-09-23 01:12:24 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-09-23 01:12:24 +0000
commitb4ba0ab9d629d222dce165e62056ecd7f24e4233 (patch)
tree929539587117235959e036efb6afe0dd48a510c1 /XSUB.h
parent4c968f6156c114f1c23bebffcd6710d4a1f359fe (diff)
downloadperl-b4ba0ab9d629d222dce165e62056ecd7f24e4233.tar.gz
add include guard
p4raw-id: //depot/perl@4220
Diffstat (limited to 'XSUB.h')
-rw-r--r--XSUB.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/XSUB.h b/XSUB.h
index 509a1d6b04..a414b85d11 100644
--- a/XSUB.h
+++ b/XSUB.h
@@ -1,3 +1,6 @@
+#ifndef _INC_PERL_XSUB_H
+#define _INC_PERL_XSUB_H 1
+
#define ST(off) PL_stack_base[ax + (off)]
#if defined(CYGWIN) && defined(USE_DYNAMIC_LOADING)
@@ -279,3 +282,5 @@
# define socketpair PerlSock_socketpair
# endif /* NO_XSLOCKS */
#endif /* PERL_CAPI */
+
+#endif _INC_PERL_XSUB_H /* include guard */