diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-03-08 03:42:25 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-03-08 03:42:25 +0000 |
commit | c505305855a5c7c999c7adfa0271436b3ff6ee55 (patch) | |
tree | f6188d601b09fdfc2383e46f7f47dbc06b556187 /newlib/libc/stdio/stdio.tex | |
parent | cba95ef1c87ef752799560af1cb978fbaa0cee38 (diff) | |
download | cygnal-c505305855a5c7c999c7adfa0271436b3ff6ee55.tar.gz cygnal-c505305855a5c7c999c7adfa0271436b3ff6ee55.tar.bz2 cygnal-c505305855a5c7c999c7adfa0271436b3ff6ee55.zip |
* libc/stdio/Makefile.am (lib_a_SOURCES): Added getw.c and putw.c.
(CHEWOUT_FILES): Added getw.def and putw.def.
* libc/stdio/Makefile.in: Rebuilt.
* libc/stdio/stdio.tex: Include getw.def and putw.def.
* libc/stdio/getw.c: New file.
* libc/stdio/putw.c: New file.
Diffstat (limited to 'newlib/libc/stdio/stdio.tex')
-rw-r--r-- | newlib/libc/stdio/stdio.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/newlib/libc/stdio/stdio.tex b/newlib/libc/stdio/stdio.tex index 466e1f0db..725b2f35b 100644 --- a/newlib/libc/stdio/stdio.tex +++ b/newlib/libc/stdio/stdio.tex @@ -46,12 +46,14 @@ structure. * getc:: Get a character from a file or stream (macro) * getchar:: Get a character from standard input (macro) * gets:: Get character string from standard input (obsolete) +* getw:: Get a word (int) from a file or stream * iprintf:: Write formatted output (integer only) * mktemp:: Generate unused file name * perror:: Print an error message on standard error * putc:: Write a character on a stream or file (macro) * putchar:: Write a character on standard output (macro) * puts:: Write a character string on standard output +* putw:: Write a word (int) to a file or stream * remove:: Delete a file's name * rename:: Rename a file * rewind:: Reinitialize a file or stream @@ -131,6 +133,9 @@ structure. @page @include stdio/gets.def +@page +@include stdio/getw.def + @page @include stdio/iprintf.def @@ -149,6 +154,9 @@ structure. @page @include stdio/puts.def +@page +@include stdio/putw.def + @page @include stdio/remove.def |