diff options
Diffstat (limited to 'newlib/libc/stdio/stdio.c')
-rw-r--r-- | newlib/libc/stdio/stdio.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/newlib/libc/stdio/stdio.c b/newlib/libc/stdio/stdio.c index 3cf3ea7..31b787b 100644 --- a/newlib/libc/stdio/stdio.c +++ b/newlib/libc/stdio/stdio.c @@ -61,6 +61,17 @@ _DEFUN(__sread, (ptr, cookie, buf, n), return ret; } +/* Dummy function used in sscanf/swscanf. */ +_READ_WRITE_RETURN_TYPE +_DEFUN(__seofread, (ptr, cookie, buf, len), + struct _reent *_ptr _AND + _PTR cookie _AND + char *buf _AND + int len) +{ + return 0; +} + _READ_WRITE_RETURN_TYPE _DEFUN(__swrite, (ptr, cookie, buf, n), struct _reent *ptr _AND |