diff options
Diffstat (limited to 'newlib/libc/stdio/putw.c')
-rw-r--r-- | newlib/libc/stdio/putw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/putw.c b/newlib/libc/stdio/putw.c index 1e3c78c..5377d87 100644 --- a/newlib/libc/stdio/putw.c +++ b/newlib/libc/stdio/putw.c @@ -53,7 +53,7 @@ _DEFUN(putw, (w, fp), int w, register FILE *fp) { - if (fwrite ((_CONST char*)&w, sizeof (w), 1, fp) != 1) + if (fwrite ((const char*)&w, sizeof (w), 1, fp) != 1) return EOF; return 0; } |