diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-20 09:00:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-20 09:00:37 +0000 |
commit | d195c6ca9b45799e375dddc33999e242dc241e7e (patch) | |
tree | 6d136fed6e1407dde1d6c58be40b5d9547ffe75a /wcsmbs | |
parent | c6bc23f6c81fc0d43688b51eceb4fbb270c4b28d (diff) | |
download | glibc-d195c6ca9b45799e375dddc33999e242dc241e7e.zip glibc-d195c6ca9b45799e375dddc33999e242dc241e7e.tar.gz glibc-d195c6ca9b45799e375dddc33999e242dc241e7e.tar.bz2 |
Update.
1999-06-20 Ulrich Drepper <drepper@cygnus.com>
* libio/libio.h (_IO_putwc): Correct type of first argument.
* wcsmbs/wchar.h: (fputwc, putwc, putwchar, fputwc_unlocked,
putwc_unlocked, putwchar_unlocked): Likewise.
* libio/fputwc.c: Likewise.
* libio/fputwc_unlocked.c: Likewise.
* libio/putwc.c: Likewise.
* libio/putwc_unlocked.c: Likewise.
* libio/putwchar.c: Likewise.
* libio/putwchar_unlocked.c: Likewise.
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/wchar.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index 8be3f10..4639cb2 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -597,20 +597,20 @@ extern wint_t fgetwc_unlocked __P ((FILE *__stream)); /* Write a character to STREAM. */ -extern wint_t fputwc __P ((wint_t __wc, FILE *__stream)); -extern wint_t putwc __P ((wint_t __wc, FILE *__stream)); +extern wint_t fputwc __P ((wchar_t __wc, FILE *__stream)); +extern wint_t putwc __P ((wchar_t __wc, FILE *__stream)); /* Write a character to stdout. */ -extern wint_t putwchar __P ((wint_t __wc)); +extern wint_t putwchar __P ((wchar_t __wc)); #ifdef __USE_GNU /* Faster version when locking is not necessary. */ -extern wint_t fputwc_unlocked __P ((wint_t __wc, FILE *__stream)); +extern wint_t fputwc_unlocked __P ((wchar_t __wc, FILE *__stream)); /* These are defined to be equivalent to the `char' functions defined in POSIX.1:1996. */ -extern wint_t putwc_unlocked __P ((wint_t __wc, FILE *__stream)); -extern wint_t putwchar_unlocked __P ((wint_t __wc)); +extern wint_t putwc_unlocked __P ((wchar_t __wc, FILE *__stream)); +extern wint_t putwchar_unlocked __P ((wchar_t __wc)); #endif |