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:
authorThomas Fitzsimmons <fitzsim@redhat.com>2002-06-18 22:49:17 +0400
committerThomas Fitzsimmons <fitzsim@redhat.com>2002-06-18 22:49:17 +0400
commitaf1c257a9b6453c9364fa3bf301fb236fe90e664 (patch)
tree78d27e798c0c64be185c17fb76782835f96dbd60 /newlib/libc/include/ctype.h
parent4e04fa902a3117ff9f2f81237a19e892314e924f (diff)
* libc/include/ctype.h: Remove isblank macro.
* libc/ctype/Makefile.am (LIB_SOURCES): Add isblank.c. * libc/ctype/isblank.c: New file. * libc/include/ctype.h [!__STRICT_ANSI__]: Add isblank declaration. Add isblank macro.
Diffstat (limited to 'newlib/libc/include/ctype.h')
-rw-r--r--newlib/libc/include/ctype.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/include/ctype.h b/newlib/libc/include/ctype.h
index 18dd02f70..194a52b19 100644
--- a/newlib/libc/include/ctype.h
+++ b/newlib/libc/include/ctype.h
@@ -21,6 +21,7 @@ int _EXFUN(tolower, (int __c));
int _EXFUN(toupper, (int __c));
#ifndef __STRICT_ANSI__
+int _EXFUN(isblank, (int __c));
int _EXFUN(isascii, (int __c));
int _EXFUN(toascii, (int __c));
int _EXFUN(_tolower, (int __c));