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.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/Build/source/texk/kpathsea/c-ctype.h b/Build/source/texk/kpathsea/c-ctype.h
index 005943d5cb0..53f7f4b5209 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 Karl Berry.
+ Copyright 1992, 1994, 2008, 2010 Karl Berry.
Copyright 1998, 2000, 2005 Olaf Weber.
This library is free software; you can redistribute it and/or
@@ -21,16 +21,10 @@
#include <ctype.h>
-/* Be sure we have `isascii'. */
-#ifdef WIN32
-#ifndef __MINGW32__
-#include <oldnames.h>
-#endif
-#else
+/* Be sure we have `isascii', even if wrong. */
#ifndef isascii
#define isascii(c) 1
#endif
-#endif
#define ISALNUM(c) (isascii (c) && isalnum(c))
#define ISALPHA(c) (isascii (c) && isalpha(c))