summaryrefslogtreecommitdiffstats
path: root/src/include/port-sockets.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2001-10-06 03:14:42 +0000
committerKen Raeburn <raeburn@mit.edu>2001-10-06 03:14:42 +0000
commitc1d2e4e4deaa5d5df19171539a30c13fc43b7a6f (patch)
treeb6b4e2f17a5ab2b237a27c2f6c80f659615285bd /src/include/port-sockets.h
parent2e0ebe3766332b985c79b7ff92476c61fa16326b (diff)
downloadkrb5-c1d2e4e4deaa5d5df19171539a30c13fc43b7a6f.tar.gz
krb5-c1d2e4e4deaa5d5df19171539a30c13fc43b7a6f.tar.xz
krb5-c1d2e4e4deaa5d5df19171539a30c13fc43b7a6f.zip
Danilo also says we can get rid of _MSDOS (Win16) tests, and explicit FAR/NEAR specs
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13786 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/port-sockets.h')
-rw-r--r--src/include/port-sockets.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/port-sockets.h b/src/include/port-sockets.h
index da7ebc2b6d..3a398fddbf 100644
--- a/src/include/port-sockets.h
+++ b/src/include/port-sockets.h
@@ -1,6 +1,6 @@
#ifndef _PORT_SOCKET_H
#define _PORT_SOCKET_H
-#if defined(_MSDOS) || defined(_WIN32)
+#if defined(_WIN32)
#include <winsock.h>
@@ -18,7 +18,7 @@
int win_socket_initialize();
-#else /* not _MSDOS and not _WIN32 */
+#else /* not _WIN32 */
/* If this source file requires it, define struct sockaddr_in
(and possibly other things related to network I/O). */
@@ -59,5 +59,5 @@ int win_socket_initialize();
#endif /* HAVE_MACSOCK_H */
-#endif /* _MSDOS */
+#endif /* _WIN32 */
#endif /*_PORT_SOCKET_H*/