From: Jarkko Hietaniemi Date: Sat, 6 Nov 1999 23:27:35 +0000 (+0000) Subject: Replace the explicit zeros with NOOPs. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c2af87cbb8cac70e20316319aae6b4a271c01523;p=p5sagit%2Fp5-mst-13.2.git Replace the explicit zeros with NOOPs. p4raw-id: //depot/cfgperl@4529 --- diff --git a/perl.h b/perl.h index 06a8857..0cde982 100644 --- a/perl.h +++ b/perl.h @@ -3024,7 +3024,7 @@ typedef struct am_table_short AMTS; * so perl may have to guard against stack overflow. */ #ifndef PERL_STACK_OVERFLOW_CHECK -#define PERL_STACK_OVERFLOW_CHECK() 0 +#define PERL_STACK_OVERFLOW_CHECK() NOOP #endif /* @@ -3034,7 +3034,7 @@ typedef struct am_table_short AMTS; * massively. */ #ifndef PERL_ASYNC_CHECK -#define PERL_ASYNC_CHECK() 0 +#define PERL_ASYNC_CHECK() NOOP #endif /* @@ -3044,7 +3044,7 @@ typedef struct am_table_short AMTS; * it to NULL. */ #ifndef PERL_ALLOC_CHECK -#define PERL_ALLOC_CHECK(p) 0 +#define PERL_ALLOC_CHECK(p) NOOP #endif /*