summaryrefslogtreecommitdiff
path: root/xc/include
diff options
context:
space:
mode:
authorgildea <empty>1994-03-29 18:46:52 +0000
committergildea <empty>1994-03-29 18:46:52 +0000
commitad557f0515431da8997cdcdff618fdfe70b9f261 (patch)
tree0ae460cc77d8b45035caf49fbc934d5d84b5d79a /xc/include
parent7f37d3bf514d861bd85ec3cbe5b502de836194f4 (diff)
no strerror if not __STDC__ either
Diffstat (limited to 'xc/include')
-rw-r--r--xc/include/Xos.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xc/include/Xos.h b/xc/include/Xos.h
index c27bb3bf5..6708eabd8 100644
--- a/xc/include/Xos.h
+++ b/xc/include/Xos.h
@@ -1,5 +1,5 @@
/*
- * $XConsortium: Xos.h,v 1.60 94/03/29 16:56:26 gildea Exp $
+ * $XConsortium: Xos.h,v 1.61 94/03/29 18:08:22 gildea Exp $
*
* Copyright 1987 by the Massachusetts Institute of Technology
*
@@ -82,7 +82,7 @@
/*
* strerror()
*/
-#if defined(SYSV) || (defined(sun) && !defined(SVR4))
+#if !defined(__STDC__) || defined(SYSV) || (defined(sun) && !defined(SVR4))
#ifndef strerror
extern char *sys_errlist[];
extern int sys_nerr;