diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-09 00:32:43 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-09 00:32:43 +0000 |
commit | 5336d6de84bcaead2b31dccf963a6ce2be9d5eb0 (patch) | |
tree | 03a7b7ad00e0eae07b49ef85aa1538d84c4bfd0c /newlib | |
parent | 8915d10a26e51b54ae5a908d0697ace2ab64ef53 (diff) | |
download | newlib-5336d6de84bcaead2b31dccf963a6ce2be9d5eb0.zip newlib-5336d6de84bcaead2b31dccf963a6ce2be9d5eb0.tar.gz newlib-5336d6de84bcaead2b31dccf963a6ce2be9d5eb0.tar.bz2 |
2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdio.h: Revert putw prototype.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/include/stdio.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index c1aaf24..ee9e891 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2001-02-08 Jeff Johnston <jjohnstn@redhat.com> + + * libc/include/stdio.h: Revert putw prototype. + 2001-02-08 Edward M. Lee <tailbert@yahoo.com> * libc/include/grp.h: add prototype for initgroups. diff --git a/newlib/libc/include/stdio.h b/newlib/libc/include/stdio.h index 5c5dae4..9c1a06f 100644 --- a/newlib/libc/include/stdio.h +++ b/newlib/libc/include/stdio.h @@ -209,7 +209,7 @@ int _EXFUN(fileno, (FILE *)); int _EXFUN(getw, (FILE *)); int _EXFUN(pclose, (FILE *)); FILE * _EXFUN(popen, (const char *, const char *)); -int _EXFUN(putw, (int w, FILE *)); +int _EXFUN(putw, (int, FILE *)); void _EXFUN(setbuffer, (FILE *, char *, int)); int _EXFUN(setlinebuf, (FILE *)); #endif |