diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2005-05-30 12:15:56 +0300 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-05-30 10:19:09 +0000 |
commit | 3c0f78ca4f737d7b40beecbfdca31b9f7e3fb952 (patch) | |
tree | 0c5cc6b5b5d5060f76ddafe25f0051d2ff6c4b9e /perl.h | |
parent | 4ab2a30b7819ac6edb69c69e044edaf44dd8119f (diff) | |
download | perl-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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... */ |