Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2003-06-22 20:35:51 +0400
committerDJ Delorie <dj@redhat.com>2003-06-22 20:35:51 +0400
commit0f51128880920f1526bc08bb88dfee6aee9e1b42 (patch)
tree18b8969477d89a42a4ff11a2bb966b6bd5a15064 /include/safe-ctype.h
parent0543b9a2c72c94620ecf07c6b458324064ac1441 (diff)
merge from gcc
Diffstat (limited to 'include/safe-ctype.h')
-rw-r--r--include/safe-ctype.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/safe-ctype.h b/include/safe-ctype.h
index c3e154c6f..69a3f74cc 100644
--- a/include/safe-ctype.h
+++ b/include/safe-ctype.h
@@ -40,19 +40,19 @@ Boston, MA 02111-1307, USA. */
#endif
/* Determine host character set. */
-#define HC_UNKNOWN 0
-#define HC_ASCII 1
-#define HC_EBCDIC 2
+#define HOST_CHARSET_UNKNOWN 0
+#define HOST_CHARSET_ASCII 1
+#define HOST_CHARSET_EBCDIC 2
#if '\n' == 0x0A && ' ' == 0x20 && '0' == 0x30 \
&& 'A' == 0x41 && 'a' == 0x61 && '!' == 0x21
-# define HOST_CHARSET HC_ASCII
+# define HOST_CHARSET HOST_CHARSET_ASCII
#else
# if '\n' == 0x15 && ' ' == 0x40 && '0' == 0xF0 \
&& 'A' == 0xC1 && 'a' == 0x81 && '!' == 0x5A
-# define HOST_CHARSET HC_EBCDIC
+# define HOST_CHARSET HOST_CHARSET_EBCDIC
# else
-# define HOST_CHARSET HC_UNKNOWN
+# define HOST_CHARSET HOST_CHARSET_UNKNOWN
# endif
#endif