summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/ferror_unlocked.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio/ferror_unlocked.c')
-rw-r--r--lib/libc/stdio/ferror_unlocked.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/stdio/ferror_unlocked.c b/lib/libc/stdio/ferror_unlocked.c
new file mode 100644
index 00000000..3c622dd9
--- /dev/null
+++ b/lib/libc/stdio/ferror_unlocked.c
@@ -0,0 +1,7 @@
+#include <__stdio.h>
+#include <stdio.h>
+
+int ferror_unlocked(FILE *stream)
+{
+ return (stream) ? (stream->flags & _IO_ERR) != 0 : 0;
+}