summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-12 17:51:22 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-12 18:04:26 -0800
commitd0ee97550e4103bed00118a10f4adf87767079dc (patch)
tree252541deebb8a09d9861cd3400165b8458650816
parentae798c59e34eba8a83995579943b689fc42987bb (diff)
unifdef __osf__
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--vendor.c2
-rw-r--r--vendor.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor.c b/vendor.c
index 13f1871..a351fd0 100644
--- a/vendor.c
+++ b/vendor.c
@@ -38,7 +38,7 @@ typedef struct sectionName {
const char *suffix;
} SectionNameRec;
-#if (defined(__osf__) || defined(SVR4)) && !defined(sun)
+#if defined(SVR4) && !defined(sun)
static SectionNameRec SectionNames[] = {
{"(1) User Commands", "1"},
diff --git a/vendor.h b/vendor.h
index 1df1b99..e311623 100644
--- a/vendor.h
+++ b/vendor.h
@@ -70,7 +70,7 @@ from the X Consortium.
# define SYSMANPATH "/usr/share/man:/usr/local/man:/usr/X11R6/man"
#elif defined(SVR4) && defined(sun)
# define SYSMANPATH "/usr/share/man:/usr/X11/man:/usr/openwin/share/man:/usr/dt/share/man:/usr/sfw/share/man"
-#elif defined(SVR4) || defined(__osf__) || (defined(BSD) && (BSD >= 199103))
+#elif defined(SVR4) || (defined(BSD) && (BSD >= 199103))
# define SYSMANPATH "/usr/share/man"
#endif