瀏覽代碼

remove "register" from _vf[w]printf_internal declarations too

Denis Vlasenko 16 年之前
父節點
當前提交
a8a6353529
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      libc/stdio/_stdio.h

+ 2 - 2
libc/stdio/_stdio.h

@@ -434,12 +434,12 @@ extern size_t _wstdio_fwrite(const wchar_t *__restrict ws,
 /**********************************************************************/
 
 extern int _vfprintf_internal (FILE * __restrict stream,
-			register const char * __restrict format,
+			const char * __restrict format,
 			va_list arg) attribute_hidden;
 
 #ifdef __UCLIBC_HAS_WCHAR__
 extern int _vfwprintf_internal (FILE * __restrict stream,
-			register const wchar_t * __restrict format,
+			const wchar_t * __restrict format,
 			va_list arg) attribute_hidden;
 #endif