summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2005-05-30 12:15:56 +0300
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-05-30 10:19:09 +0000
commit3c0f78ca4f737d7b40beecbfdca31b9f7e3fb952 (patch)
tree0c5cc6b5b5d5060f76ddafe25f0051d2ff6c4b9e /perl.h
parent4ab2a30b7819ac6edb69c69e044edaf44dd8119f (diff)
downloadperl-3c0f78ca4f737d7b40beecbfdca31b9f7e3fb952.tar.gz
Re: updated tru64 cc [PATCH]es (Re: [PATCH]es: Tru64/blead)
Message-ID: <429AAF9C.30503@gmail.com> p4raw-id: //depot/perl@24627
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 3c17674f1b..df12645c12 100644
--- a/perl.h
+++ b/perl.h
@@ -5093,8 +5093,8 @@ extern void moncontrol(int);
* but also beware since this evaluates its argument twice, so no x++. */
#define PERL_ABS(x) ((x) < 0 ? -(x) : (x))
-#ifdef __osf__
-#pragma message disable (mainparm) /* We have the envp in main(). */
+#if defined(__DECC) && defined(__osf__)
+#pragma message disable (mainparm) /* Perl uses the envp in main(). */
#endif
/* and finally... */