summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/c-ctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/kpathsea/c-ctype.h')
-rw-r--r--Build/source/texk/kpathsea/c-ctype.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/c-ctype.h b/Build/source/texk/kpathsea/c-ctype.h
index d05e5e139e8..1a80197b1de 100644
--- a/Build/source/texk/kpathsea/c-ctype.h
+++ b/Build/source/texk/kpathsea/c-ctype.h
@@ -1,6 +1,6 @@
/* c-ctype.h: ASCII-safe versions of the <ctype.h> macros.
- Copyright 1992, 1994, 2008, 2010 Karl Berry.
+ Copyright 1992, 1994, 2008, 2010, 2011 Karl Berry.
Copyright 1998, 2000, 2005 Olaf Weber.
This library is free software; you can redistribute it and/or
@@ -22,9 +22,11 @@
#include <ctype.h>
/* Be sure we have `isascii', even if wrong. */
+#ifndef WIN32
#ifndef isascii
#define isascii(c) 1
#endif
+#endif
#define ISALNUM(c) (isascii (c) && isalnum(c))
#define ISALPHA(c) (isascii (c) && isalpha(c))