From f1df1f9f0b4449c6d90ae6274d6837d6b8c7698b Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Sat, 18 Aug 2018 08:22:16 -0600 Subject: [PATCH] Fix issue with stdio.h bits file not having FILE defined --- include/bits/stdio.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/bits/stdio.h b/include/bits/stdio.h index b20ee2bd9..10d1314d8 100644 --- a/include/bits/stdio.h +++ b/include/bits/stdio.h @@ -4,6 +4,8 @@ #define EOF (-1) #define BUFSIZ 1024 +typedef struct FILE FILE; + int fprintf(FILE * stream, const char * fmt, ...); int printf(const char * fmt, ...); int snprintf(char *s, size_t n, const char * fmt, ...); -- GitLab