summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorRoderick Schertler <roderick@argon.org>1997-12-20 18:01:40 -0500
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-01-08 15:57:31 +0000
commit16de4a3eb5e2e5404a0e20c9aab265691171d76f (patch)
tree3cd06ea15e8ebfbda3e3b2dade6325874f78fc2f /perl.h
parent313489a27de6697e61bfff01393b351f135aa63b (diff)
downloadperl-16de4a3eb5e2e5404a0e20c9aab265691171d76f.tar.gz
DG/UX tweaks to perl.h:
Subject: [PATCH] _56 on dgux without threads p4raw-id: //depot/perl@407
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 9138ba6571..bec110cf74 100644
--- a/perl.h
+++ b/perl.h
@@ -113,7 +113,8 @@ register struct op *op asm(stringify(OP_IN_REGISTER));
# define STANDARD_C 1
#endif
-#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2)
+#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) \
+ || defined(__DGUX)
# define DONT_DECLARE_STD 1
#endif
@@ -1382,7 +1383,9 @@ int runops_debug _((void));
/* VMS doesn't use environ array and NeXT has problems with crt0.o globals */
#if !defined(VMS) && !(defined(NeXT) && defined(__DYNAMIC__))
-#if !defined(DONT_DECLARE_STD) || (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || defined(__sgi)
+#if !defined(DONT_DECLARE_STD) \
+ || (defined(__svr4__) && defined(__GNUC__) && defined(sun)) \
+ || defined(__sgi) || defined(__DGUX)
extern char ** environ; /* environment variables supplied via exec */
#endif
#else