OSDN Git Service

Sync minimally w/ glibc, else cpio fails building
authorPeter S. Mazinger <ps.m@gmx.net>
Sun, 27 Nov 2005 11:18:15 +0000 (11:18 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Sun, 27 Nov 2005 11:18:15 +0000 (11:18 -0000)
include/ctype.h

index 5034efb..e003131 100644 (file)
@@ -247,13 +247,13 @@ __exctype (_tolower);
 
 # ifdef __USE_EXTERN_INLINES
 extern __inline int
-tolower (int __c) __THROW
+__NTH (tolower (int __c))
 {
   return __UCLIBC_CTYPE_IN_TO_DOMAIN(__c) ? (__UCLIBC_CTYPE_TOLOWER)[__c] : __c;
 }
 
 extern __inline int
-toupper (int __c) __THROW
+__NTH (toupper (int __c))
 {
   return __UCLIBC_CTYPE_IN_TO_DOMAIN(__c) ? (__UCLIBC_CTYPE_TOUPPER)[__c] : __c;
 }