diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-10-09 20:57:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-10-09 20:57:26 +0000 |
commit | 7e4e8c89c9cf9e2712eede00d12c71677e17b929 (patch) | |
tree | ccff83caea5f77bb9d96eedef8335d420b3e3fdf /op.c | |
parent | 1c2b4d67977aeb5bb1057ed40fce97cdd133e14a (diff) | |
download | perl-7e4e8c89c9cf9e2712eede00d12c71677e17b929.tar.gz |
Put all pre-processor #s on the first column (some compilers are picky)
[perl #24167] `#' comment signs not at the very beginning of a line
p4raw-id: //depot/perl@21433
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -78,9 +78,9 @@ Perl_Slab_Free(pTHX_ void *op) assert( ptr < ( (I32 **) slab + PERL_SLAB_SIZE) ); assert( *slab > 0 ); if (--(*slab) == 0) { - #ifdef NETWARE - #define PerlMemShared PerlMem - #endif +# ifdef NETWARE +# define PerlMemShared PerlMem +# endif PerlMemShared_free(slab); if (slab == PL_OpSlab) { |