libc: Fix fwrite function name
Commit 4344e27c26
changed the reserved
function names, but got the naming wrong for fwrite. Just use the
name zephyr_fwrite everywhere.
Fixes #14275
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
c1a18fb514
commit
c82f23cada
2 changed files with 5 additions and 5 deletions
|
@ -32,7 +32,7 @@ __syscall int z_zephyr_write_stdout(const void *buf, int nbytes);
|
|||
|
||||
__syscall int _zephyr_fputc(int c, FILE *stream);
|
||||
|
||||
__syscall size_t z_zephyr_fwrite(const void *_MLIBC_RESTRICT ptr, size_t size,
|
||||
__syscall size_t zephyr_fwrite(const void *_MLIBC_RESTRICT ptr, size_t size,
|
||||
size_t nitems, FILE *_MLIBC_RESTRICT stream);
|
||||
#endif /* CONFIG_NEWLIB_LIBC */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue