浏览代码

Sync minimally w/ glibc, else cpio fails building

Peter S. Mazinger 18 年之前
父节点
当前提交
dcc619d6cd
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/ctype.h

+ 2 - 2
include/ctype.h

@@ -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;
 }