diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-10 21:15:59 +0000 | 
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-10 21:15:59 +0000 | 
| commit | a8a63535295e35307f63adc1d665f13016f65110 (patch) | |
| tree | 77e9ff31baa51e27e0537ed48ce69c1232628fe2 | |
| parent | 2a915734a32c5aec9a6a76c13bcb074d30e64171 (diff) | |
remove "register" from _vf[w]printf_internal declarations too
| -rw-r--r-- | libc/stdio/_stdio.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/_stdio.h b/libc/stdio/_stdio.h index e1fc26785..27075a8ac 100644 --- a/libc/stdio/_stdio.h +++ b/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  | 
