]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* libio/libio.h (_IO_putwc): Correct type of first argument. * wcsmbs/wchar.h: (fputw...
authorUlrich Drepper <drepper@redhat.com>
Sun, 20 Jun 1999 08:57:58 +0000 (08:57 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 20 Jun 1999 08:57:58 +0000 (08:57 +0000)
libio/fputwc.c
libio/fputwc_u.c
libio/libio.h
libio/putwc.c
libio/putwc_u.c
libio/putwchar.c
libio/putwchar_u.c

index cc8451a98fc7b183f69d3672d9dc829a100f0e30..9a248eee7513eee92f366cae9ee9a4a326bfc670 100644 (file)
@@ -28,7 +28,7 @@
 
 wint_t
 fputwc (wc, fp)
-     wint_t wc;
+     wchar_t wc;
      _IO_FILE *fp;
 {
   int result;
index 343e34d90e2c11ff3dafb417c42328bda1298dba..1ecf96264f85205542f465f4796498bb086a8a5e 100644 (file)
@@ -30,7 +30,7 @@
 
 wint_t
 fputwc_unlocked (wc, fp)
-     wint_t wc;
+     wchar_t wc;
      _IO_FILE *fp;
 {
   CHECK_FILE (fp, EOF);
index ddf24b2456ce4ba9c9ed968bfb3130133dedee48..ba820409f125ece28af93e4c609ee90cc28ff8d9 100644 (file)
@@ -418,7 +418,7 @@ extern _IO_wint_t __woverflow __P ((_IO_FILE *, _IO_wint_t));
 extern int _IO_getc __P ((_IO_FILE *__fp));
 extern int _IO_putc __P ((int __c, _IO_FILE *__fp));
 extern _IO_wint_t _IO_getwc __P ((_IO_FILE *__fp));
-extern _IO_wint_t _IO_putwc __P ((_IO_wint_t __wc, _IO_FILE *__fp));
+extern _IO_wint_t _IO_putwc __P ((_IO_wchar_t __wc, _IO_FILE *__fp));
 extern int _IO_feof __P ((_IO_FILE *__fp));
 extern int _IO_ferror __P ((_IO_FILE *__fp));
 
index 07557ac8c48d31fa14ba866f671449c8604e0131..ec3d6e47a986cfdeed8bc5f7738d405d60bd7928 100644 (file)
@@ -21,7 +21,7 @@
 
 wint_t
 putwc (wc, fp)
-     wint_t wc;
+     wchar_t wc;
      _IO_FILE *fp;
 {
   wint_t result;
index 3f7a26fad2f631d3ae870e7af30e1b585642b0bf..7a9bb95ccaafd3a61505ff9a68821c946a146be6 100644 (file)
@@ -21,7 +21,7 @@
 
 wint_t
 putwc_unlocked (wc, fp)
-     wint_t wc;
+     wchar_t wc;
      _IO_FILE *fp;
 {
   CHECK_FILE (fp, WEOF);
index 0a2854f16d4a80000ac811db66bfec2b3b28886e..a4e8411831e7347be21db6f3f4dd8b2d6d9622d3 100644 (file)
@@ -21,7 +21,7 @@
 
 wint_t
 putwchar (wc)
-     wint_t wc;
+     wchar_t wc;
 {
   wint_t result;
   _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
index 0da7dcfa30879fcefb74870546afe156e376c6fd..c8add84146c26cd3945811a06c7676e128cf6855 100644 (file)
@@ -21,7 +21,7 @@
 
 wint_t
 putwchar_unlocked (c)
-     wint_t c;
+     wchar_t c;
 {
   CHECK_FILE (stdout, WEOF);
   return _IO_putwc_unlocked (wc, stdout);