Displaying 1 result from an estimated 1 matches for "1d45fe1a".
Did you mean:
1d45fe1
2020 Jul 25
0
[klibc:master] stdio: Define all the _unlocked functions and macros
...r.c | 1 +
usr/klibc/stdio/feof.c | 1 +
usr/klibc/stdio/ferror.c | 1 +
usr/klibc/stdio/fflush.c | 2 +-
usr/klibc/stdio/fgetc.c | 1 +
usr/klibc/stdio/fileno.c | 1 +
12 files changed, 32 insertions(+), 1 deletion(-)
diff --git a/usr/include/stdio.h b/usr/include/stdio.h
index 1d45fe1a..521213df 100644
--- a/usr/include/stdio.h
+++ b/usr/include/stdio.h
@@ -48,17 +48,24 @@ __extern int fseek(FILE *, off_t, int);
#define fseeko fseek
__extern void rewind(FILE *);
__extern int fputs(const char *, FILE *);
+__extern int fputs_unlocked(const char *, FILE *);
__extern int puts(con...