summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fgets.c
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-22 23:27:56 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-22 23:30:32 +0100
commit0f30d227497418c6d3bef7d52244407e30454504 (patch)
tree0e1ac19623d3268380cf74328cdf643648a2f43c /lib/libc/stdio/fgets.c
parent90dad97fc07f049383903a166631e2c257f9b8c1 (diff)
Added c11 threads, fixed some locks and add *_unlocked functions
Diffstat (limited to 'lib/libc/stdio/fgets.c')
-rw-r--r--lib/libc/stdio/fgets.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/libc/stdio/fgets.c b/lib/libc/stdio/fgets.c
index adeae1b4..d0f7d2d9 100644
--- a/lib/libc/stdio/fgets.c
+++ b/lib/libc/stdio/fgets.c
@@ -1,11 +1,12 @@
-#include "stddef.h" // for NULL
-
-#include <libc.h> // for weak_reference
-#include <stdio.h> // for fread, FILE, fgets
+#include <stdio.h>
char *fgets(char *restrict s, int n, FILE *restrict stream)
{
- return fread(s, 1, n, stream) ? s : NULL;
-}
+ char *r;
-weak_reference(fgets, fgets_unlocked);
+ flockfile(stream);
+ r = fgets_unlocked(s, n, stream);
+ funlockfile(stream);
+
+ return r;
+}