summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-08-15 17:49:01 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-08-15 17:49:01 -0700
commit04456faafc6a670a2f3b0c0aeb59b41edbc52f86 (patch)
treeb89fbd44e57f79dc81660b50b0e8b88b27bf6e24
parentfed0f68b789f3929c9080dd251e7c3ca555150a4 (diff)
unifdef -UUSG
USG was defined for a handful of pre-SVR4 systems based on AT&T's Unix System Group releases in the old imake configs and has never been defined in X11R7 modular builds. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--miscfuncs.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/miscfuncs.c b/miscfuncs.c
index 9846bc0..13b5f51 100644
--- a/miscfuncs.c
+++ b/miscfuncs.c
@@ -11,16 +11,12 @@
#ifdef SYSV
#include <dirent.h>
#else
-#ifdef USG
-#include <dirent.h>
-#else
#include <sys/dir.h>
#ifndef dirent
#define dirent direct
#endif
#endif
#endif
-#endif
#include <stdlib.h>