From b3d22cef93306849f7eaeba2907bcd1099f9e33f Mon Sep 17 00:00:00 2001 From: Davi Arnaut Date: Thu, 15 Jul 2010 08:16:06 -0300 Subject: WL#5486: Remove code for unsupported platforms Remove MS-DOS specific code. --- libmysqld/libmysqld.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmysqld') diff --git a/libmysqld/libmysqld.c b/libmysqld/libmysqld.c index 758b803dbd4..603fc3bc2f0 100644 --- a/libmysqld/libmysqld.c +++ b/libmysqld/libmysqld.c @@ -32,7 +32,7 @@ #ifdef HAVE_PWD_H #include #endif -#if !defined(MSDOS) && !defined(__WIN__) +#if !defined(__WIN__) #include #include #include @@ -54,7 +54,7 @@ extern ulong net_buffer_length; extern ulong max_allowed_packet; -#if defined(MSDOS) || defined(__WIN__) +#if defined(__WIN__) #define ERRNO WSAGetLastError() #define perror(A) #else -- cgit v1.2.1