From 036e1f6c55ca27059c9ece1a3e29e80523cb6a40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 9 Jun 2005 12:17:03 +0000 Subject: replaced MACOSX by __APPLE__ replaced NT by __WIN32__ (defined by mingw, but NOT by msvc) svn path=/trunk/externals/zexy/; revision=3139 --- src/lpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lpt.c') diff --git a/src/lpt.c b/src/lpt.c index fbe58ff..238beef 100644 --- a/src/lpt.c +++ b/src/lpt.c @@ -40,7 +40,7 @@ #ifdef Z_WANT_LPT # include -# ifdef NT +# ifdef __WIN32__ /* on windoze everything is so complicated... */ extern int read_parport(int port); extern void write_parport(int port, int value); @@ -77,7 +77,7 @@ static int sys_inb(int port) { return inb(port); } -# endif /* NT */ +# endif /* __WIN32__ */ #endif /* Z_WANT_LP */ -- cgit v1.2.1