diff options
author | coral@eekeek.org <coral@eekeek.org> | 2001-12-28 14:58:22 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-29 15:35:00 +0000 |
commit | 7207e29d564e32c8ec2cb43eabae72ff68c02442 (patch) | |
tree | bb40d411a530f4479f2f567dd24c156f50cdd657 /pod/perlxs.pod | |
parent | e0d72a37764501c52aeed41ca710cf763afa8755 (diff) | |
download | perl-7207e29d564e32c8ec2cb43eabae72ff68c02442.tar.gz |
Pod whitespace cleanup, round 0.
Message-Id: <200112290058.fBT0wMD26750@eekeek.org>
p4raw-id: //depot/perl@13930
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r-- | pod/perlxs.pod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod index 0398641962..c9f7cc8549 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -1722,20 +1722,20 @@ Below is an example module that makes use of the macros. #include "EXTERN.h" #include "perl.h" #include "XSUB.h" - + /* Global Data */ - + #define MY_CXT_KEY "BlindMice::_guts" XS_VERSION - + typedef struct { int count; char name[3][100]; } my_cxt_t; - + START_MY_CXT - + MODULE = BlindMice PACKAGE = BlindMice - + BOOT: { MY_CXT_INIT; |