X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pp.h;h=9a909c8157199c1abcdd4dc1a88589ed6bb9b499;hb=97ea268b1482091665a2c54da30873227f203194;hp=4474d1ad1cbcb12d32c47c12bbbbc74fe6d65af7;hpb=c4459e092c66d721ac4c970b6a939ccff66b5396;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pp.h b/pp.h index 4474d1a..9a909c8 100644 --- a/pp.h +++ b/pp.h @@ -1,23 +1,25 @@ /* pp.h * - * Copyright (c) 1991-2001, Larry Wall + * Copyright (c) 1991-2002, Larry Wall * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. * */ -#ifdef USE_THREADS +#ifdef USE_5005THREADS #define ARGS thr #define dARGS struct perl_thread *thr; #else #define ARGS #define dARGS -#endif /* USE_THREADS */ +#endif /* USE_5005THREADS */ #define PP(s) OP * Perl_##s(pTHX) /* +=head1 Stack Manipulation Macros + =for apidoc AmU||SP Stack pointer. This is usually handled by C. See C and C.