diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-07-30 16:07:39 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-07-30 16:07:39 -0700 |
commit | e5f52f206916b7c5264b9371f9bd0113632a4a16 (patch) | |
tree | 27cec8bb83f115343db2a53c8f27543330cf5b64 /Xtranslcl.c | |
parent | 6d1ad967b894a37f423fd52247df5fcc3bfab1a8 (diff) |
Fix ifdef checks for SVR4 to do the right thing on Solaris
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'Xtranslcl.c')
-rw-r--r-- | Xtranslcl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xtranslcl.c b/Xtranslcl.c index f6a2468..8391156 100644 --- a/Xtranslcl.c +++ b/Xtranslcl.c @@ -75,7 +75,7 @@ from The Open Group. #include <sys/signal.h> #include <sys/ioctl.h> #include <sys/stat.h> -#if defined(SVR4) +#if defined(SVR4) || defined(__SVR4) #include <sys/filio.h> #endif #ifdef sun |