Explorar el Código

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

Denis Vlasenko hace 16 años
padre
commit
a8a6353529
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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