search for: 21243cc

Displaying 2 results from an estimated 2 matches for "21243cc".

Did you mean: 21243
2012 May 22
0
[klibc:master] include: [stdio.h] add clearerr() prototype
...h:130:22: warning: no previous prototype for 'clearerr' [-Wmissing-prototypes] Signed-off-by: maximilian attems <max at stro.at> --- usr/include/stdio.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/usr/include/stdio.h b/usr/include/stdio.h index f24ab69..21243cc 100644 --- a/usr/include/stdio.h +++ b/usr/include/stdio.h @@ -95,6 +95,7 @@ __extern off_t ftell(FILE *__f); __extern int ferror(FILE * ); __extern int feof(FILE *); __extern int fileno(FILE *); +__extern void clearerr(FILE *); #ifndef __NO_STDIO_INLINES __extern_inline size_t
2019 Jan 18
0
[klibc:master] rename, renameat: Use renameat2() system call
...t.org.uk> --- usr/include/stdio.h | 1 + usr/klibc/Kbuild | 3 ++- usr/klibc/SYSCALLS.def | 1 + usr/klibc/rename.c | 2 +- usr/klibc/renameat.c | 12 ++++++++++++ 5 files changed, 17 insertions(+), 2 deletions(-) diff --git a/usr/include/stdio.h b/usr/include/stdio.h index 21243cc..1d45fe1 100644 --- a/usr/include/stdio.h +++ b/usr/include/stdio.h @@ -79,6 +79,7 @@ __extern void perror(const char *); __extern int rename(const char *, const char *); __extern int renameat(int, const char *, int, const char *); +__extern int renameat2(int, const char *, int, const char *, u...