diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-16 21:15:14 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-16 21:15:14 +0000 |
commit | 14613e5e74b633aeaa4f69e7ea096074ba94cb1f (patch) | |
tree | 0503fb6fabceee7c268746ac4cd69c6428ef6b84 /newlib/libc/stdio/setbuffer.c | |
parent | 368ffbe3d851a72b74527088f9cba63f71466742 (diff) | |
download | newlib-14613e5e74b633aeaa4f69e7ea096074ba94cb1f.zip newlib-14613e5e74b633aeaa4f69e7ea096074ba94cb1f.tar.gz newlib-14613e5e74b633aeaa4f69e7ea096074ba94cb1f.tar.bz2 |
2004-09-16 Antony King <antony.king@st.com>
* libc/ctype/ctype.tex: Added missing documentation.
* libc/stdio/stdio.tex Ditto.
* libc/stdlib/stdlib.tex Ditto.
* libc/string/strings.tex Ditto.
* libc/time/time.tex: Ditto.
* libc/stdio/setbuffer.c: Removed setlinebuf documentation.
Diffstat (limited to 'newlib/libc/stdio/setbuffer.c')
-rw-r--r-- | newlib/libc/stdio/setbuffer.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/newlib/libc/stdio/setbuffer.c b/newlib/libc/stdio/setbuffer.c index 4b2e2f6..e881874 100644 --- a/newlib/libc/stdio/setbuffer.c +++ b/newlib/libc/stdio/setbuffer.c @@ -65,41 +65,6 @@ This function comes from BSD not ANSI or POSIX. Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>, <<lseek>>, <<read>>, <<sbrk>>, <<write>>. - - -FUNCTION -<<setlinebuf>>---specify line buffering for a file or stream - -INDEX - setlinebuf - -ANSI_SYNOPSIS - #include <stdio.h> - void setlinebuf(FILE *<[fp]>); - -TRAD_SYNOPSIS - #include <stdio.h> - void setlinebuf(<[fp]>) - FILE *<[fp]>; - -DESCRIPTION -<<setlinebuf>> specifies that output to the file or stream identified by -<[fp]> should be line buffered. This causes the file or stream to pass -on output to the host system at every newline, as well as when the -buffer is full, or when an input operation intervenes. - -WARNINGS -You may only use <<setlinebuf>> before performing any file operation -other than opening the file. - -RETURNS -<<setlinebuf>> returns as per setvbuf. - -PORTABILITY -This function comes from BSD not ANSI or POSIX. - -Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>, -<<lseek>>, <<read>>, <<sbrk>>, <<write>>. */ #include <_ansi.h> |