summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-13 12:11:02 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-13 12:11:02 -0800
commit4d5fed98f350f3acb2ad53602f452a33ab5e0669 (patch)
treeb2a54f6acf0e79216fa461cf0e7dbae4f6ea3c73
parentfe021a25285e3438b97355d1e7270190cf91646f (diff)
unifdef ISC
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--signals.c2
-rw-r--r--xsm.h5
2 files changed, 1 insertions, 6 deletions
diff --git a/signals.c b/signals.c
index 5757e0c..53a0168 100644
--- a/signals.c
+++ b/signals.c
@@ -88,7 +88,7 @@ in this Software without prior written authorization from The Open Group.
#define USE_SYSV_SIGNALS
#endif
-#if defined(SCO) || defined(ISC)
+#if defined(SCO)
#undef SIGTSTP /* defined, but not the BSD way */
#endif
diff --git a/xsm.h b/xsm.h
index dbd3a1d..e952419 100644
--- a/xsm.h
+++ b/xsm.h
@@ -208,11 +208,6 @@ extern void nomem(void);
#define Strstr strstr
-/* Fix ISC brain damage. When using gcc fdopen isn't declared in <stdio.h>. */
-#if defined(ISC) && __STDC__
-extern FILE *fdopen(int, char const *);
-#endif
-
#if defined(sun) && defined(SVR4)
extern int System(char *s);
#define system(s) System(s)