search for: stdioint

Displaying 3 results from an estimated 3 matches for "stdioint".

Did you mean: stdint
2014 Apr 09
0
[klibc:master] Remove obsolete enum _IO_file_flags
...Date: Wed, 9 Apr 2014 16:41:47 -0700 Committer: H. Peter Anvin <hpa at linux.intel.com> CommitDate: Wed, 9 Apr 2014 16:41:47 -0700 [klibc] Remove obsolete enum _IO_file_flags This enum is not used anywhere. Signed-off-by: H. Peter Anvin <hpa at linux.intel.com> --- usr/klibc/stdio/stdioint.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/usr/klibc/stdio/stdioint.h b/usr/klibc/stdio/stdioint.h index 526c25a..724c657 100644 --- a/usr/klibc/stdio/stdioint.h +++ b/usr/klibc/stdio/stdioint.h @@ -28,15 +28,6 @@ struct _IO_file_pvt { #define stdio_pvt(x) container_of(x, stru...
2020 Jul 25
0
[klibc:master] stdio: Add extern definition of clearerr()
...tdio/ferror.o stdio/clearerr.o klib-$(CONFIG_KLIBC_ERRLIST) += errlist.o diff --git a/usr/klibc/stdio/clearerr.c b/usr/klibc/stdio/clearerr.c new file mode 100644 index 00000000..fb565144 --- /dev/null +++ b/usr/klibc/stdio/clearerr.c @@ -0,0 +1,8 @@ +#define __NO_STDIO_INLINES +#include "stdioint.h" + +void clearerr(FILE *__f) +{ + __f->_IO_error = 0; + __f->_IO_eof = 0; +}
2012 May 31
1
klibc 2.0 release
...ass stdio buffering for large I/O [klibc] Change OPEN_MAX to 256 [klibc] Remove stdio internals from <stdio.h> [klibc] Remove unused fputc implementation [klibc] Make __parse_open_mode handle "e" for O_CLOEXEC [klibc] Move _IO_file_flags from stdio.h to stdioint.h [klibc] Add zalloc() function [klibc] Restructure the FILE object to allow simple inlines [klibc] Fix confusion between _IONBF and _IOFBF [klibc] Make byte counters in stdio unsigned [klibc] fflush: discard input data [klibc] fseek: report error on fflush() fai...