diff options
Diffstat (limited to 'newlib/libc/string/u_strerr.c')
-rw-r--r-- | newlib/libc/string/u_strerr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/newlib/libc/string/u_strerr.c b/newlib/libc/string/u_strerr.c index fa4605c8b..7d902feb7 100644 --- a/newlib/libc/string/u_strerr.c +++ b/newlib/libc/string/u_strerr.c @@ -1,8 +1,10 @@ #include <_ansi.h> char * -_DEFUN(_user_strerror, (errnum), - int errnum) +_DEFUN(_user_strerror, (errnum, internal, errptr), + int errnum _AND + int internal _AND + int *errptr) { return 0; } |