diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-11 13:16:09 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-11 13:16:09 -0800 |
commit | 8c48c1e04723b1df9998794b0f33083d73ea5204 (patch) | |
tree | 8d80c06dc892cc6083d6d169f1b30dccf6314a97 | |
parent | ae35984780c7587fff7029ef5655f9ce6c4acc66 (diff) |
unifdef __osf__
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/Intrinsic.c | 4 | ||||
-rw-r--r-- | src/NextEvent.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Intrinsic.c b/src/Intrinsic.c index e98be86..a6a1907 100644 --- a/src/Intrinsic.c +++ b/src/Intrinsic.c @@ -1170,14 +1170,14 @@ static String ExtractLocaleName(String lang) { -#if defined(CSRG_BASED) || defined(sun) || defined(SVR4) || defined(__osf__) || defined(AIXV3) || defined(WIN32) || defined (linux) +#if defined(CSRG_BASED) || defined(sun) || defined(SVR4) || defined(AIXV3) || defined(WIN32) || defined (linux) #ifdef WIN32 #define SKIPCOUNT 1 #define STARTCHAR '=' #define ENDCHAR ';' #define WHITEFILL #else -#if defined(__osf__) || (defined(AIXV3) && !defined(AIXV4)) +#if (defined(AIXV3) && !defined(AIXV4)) #define STARTCHAR ' ' #define ENDCHAR ' ' #else diff --git a/src/NextEvent.c b/src/NextEvent.c index 890cad7..a4ca73d 100644 --- a/src/NextEvent.c +++ b/src/NextEvent.c @@ -88,7 +88,7 @@ static SignalEventRec *freeSignalRecs; */ #ifndef NEEDS_NTPD_FIXUP -#if defined(sun) || defined(MOTOROLA) || (defined(__osf__) && defined(__alpha)) +#if defined(sun) || defined(MOTOROLA) #define NEEDS_NTPD_FIXUP 1 #else #define NEEDS_NTPD_FIXUP 0 |