diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-21 18:32:07 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-21 18:32:07 +0000 |
commit | 25fbf2080e743bc6ddd3674789d8836b185cb924 (patch) | |
tree | 5ac0343276c82ae209a3373d236be052e6d98bb4 /libc/stdio/scanf.c | |
parent | b27c9f65148e96c01cafe37490d054bdeded5f2a (diff) |
Hide some
Diffstat (limited to 'libc/stdio/scanf.c')
-rw-r--r-- | libc/stdio/scanf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/scanf.c b/libc/stdio/scanf.c index 5b932063c..80a8821e7 100644 --- a/libc/stdio/scanf.c +++ b/libc/stdio/scanf.c @@ -1015,7 +1015,7 @@ static int sc_getc(register struct scan_cookie *sc) sc->fp->__modeflags |= __FLAG_EOF; return EOF; } - } else if ((wc = fgetwc_unlocked(sc->fp)) == WEOF) { + } else if ((wc = __fgetwc_unlocked(sc->fp)) == WEOF) { return EOF; } @@ -1061,7 +1061,7 @@ static int scan_getwc(register struct scan_cookie *sc) sc->ungot_flag |= 2; return -1; } - } else if ((wc = fgetwc_unlocked(sc->fp)) == WEOF) { + } else if ((wc = __fgetwc_unlocked(sc->fp)) == WEOF) { sc->ungot_flag |= 2; return -1; } |