diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-23 01:12:24 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-23 01:12:24 +0000 |
commit | f18984f6a28d5e5ebd6907089f9fc4d6763d297e (patch) | |
tree | 929539587117235959e036efb6afe0dd48a510c1 /XSUB.h | |
parent | f4b6740e06936960d34face1a706f60bebbbf0c0 (diff) | |
download | perl-f18984f6a28d5e5ebd6907089f9fc4d6763d297e.tar.gz |
add include guard
p4raw-id: //depot/perl@4220
Diffstat (limited to 'XSUB.h')
-rw-r--r-- | XSUB.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 */ |