diff options
author | kaleb <empty> | 1995-01-12 18:25:25 +0000 |
---|---|---|
committer | kaleb <empty> | 1995-01-12 18:25:25 +0000 |
commit | cce3b35da2522c634defc37eb6fbec3ddc5c7b30 (patch) | |
tree | fc6fc88544f61b0fb351a288a3d04781461b62d3 /xc/lib | |
parent | 414ed24d20fc774b996a0179c2e5d8cb04eae21b (diff) |
XFree86 3.1.0B
Diffstat (limited to 'xc/lib')
-rw-r--r-- | xc/lib/xtrans/Xtranssock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xc/lib/xtrans/Xtranssock.c b/xc/lib/xtrans/Xtranssock.c index 83981416b..a136df4ae 100644 --- a/xc/lib/xtrans/Xtranssock.c +++ b/xc/lib/xtrans/Xtranssock.c @@ -1,4 +1,4 @@ -/* $XConsortium: Xtranssock.c,v 1.32 94/11/17 14:16:52 dpw Exp kaleb $ */ +/* $XConsortium: Xtranssock.c,v 1.33 94/12/01 16:33:12 kaleb Exp kaleb $ */ /* Copyright (c) 1993, 1994 X Consortium @@ -97,7 +97,7 @@ from the X Consortium. #include <net/errno.h> #endif /* _SEQUENT_ || ESIX */ #include <sys/stropts.h> -#endif /* SYSV386 ** SYSV || _SEQUENT_ */ +#endif /* i386 && SYSV || _SEQUENT_ */ #endif /* !WIN32 */ #ifdef WIN32 @@ -1490,11 +1490,11 @@ BytesReadable_t *pend; #ifdef WIN32 return ioctlsocket ((SOCKET) ciptr->fd, FIONREAD, (u_long *) pend); #else -#if (defined(SYSV386) && defined(SYSV) && !defined(SCO)) || defined(_SEQUENT_) +#if (defined(i386) && defined(SYSV) && !defined(SCO)) || defined(_SEQUENT_) return ioctl (ciptr->fd, I_NREAD, (char *) pend); #else return ioctl (ciptr->fd, FIONREAD, (char *) pend); -#endif /* SYSV386 && SYSV || _SEQUENT_ */ +#endif /* i386 && SYSV || _SEQUENT_ */ #endif /* WIN32 */ } |