diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-12 17:47:27 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-12 17:47:27 -0800 |
commit | 7f69157bb051c52526c3ba210f75564c86654d2f (patch) | |
tree | 74f1cdf371aa5f9cce806817273c1679c0d48b1e /misc.c | |
parent | 5eaec0c56f2afac5dea8f63f7a7b01c26e06382a (diff) |
unifdef ISC
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -60,7 +60,7 @@ static Boolean ConstructCommand(char *cmdbuf, const char *path, const char *filename, const char *tempfile); #endif -#if defined(ISC) || defined(__SCO__) || defined(__UNIXWARE__) +#if defined(__SCO__) || defined(__UNIXWARE__) static char *uncompress_format = NULL; static char *uncompress_formats[] = { @@ -196,7 +196,7 @@ FindManualFile(ManpageGlobals * man_globals, int section_num, int entry_num) const char *entry = manual[section_num].entries[entry_num]; int len_cat = strlen(CAT); -#if defined(ISC) || defined(__SCO__) || defined(__UNIXWARE__) +#if defined(__SCO__) || defined(__UNIXWARE__) int i; #endif @@ -227,7 +227,7 @@ FindManualFile(ManpageGlobals * man_globals, int section_num, int entry_num) * Then for compressed files in an uncompressed directory. */ -#if !defined(ISC) && !defined(__UNIXWARE__) +#if !defined(__UNIXWARE__) #if defined(__OpenBSD__) || defined(__NetBSD__) /* look in machine subdir first */ snprintf(filename, sizeof(filename), "%s/%s%s/%s/%s.%s", path, CAT, |