diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-24 16:16:30 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-24 16:16:30 -0400 |
commit | d03b3e732368626769fb1cec7f3c3898ffb57cca (patch) | |
tree | e40b3938701663eed46cb422d32ee4b5e76be801 /include | |
parent | 43a5a00e4ab292e0a615b655f1e77837d6c1701e (diff) | |
download | musl-d03b3e732368626769fb1cec7f3c3898ffb57cca.tar.gz musl-d03b3e732368626769fb1cec7f3c3898ffb57cca.tar.xz musl-d03b3e732368626769fb1cec7f3c3898ffb57cca.zip |
stdio_ext.h needs to include stdio.h, at least to get FILE...
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio_ext.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stdio_ext.h b/include/stdio_ext.h index d979bdcd..e3ab7fd4 100644 --- a/include/stdio_ext.h +++ b/include/stdio_ext.h @@ -5,6 +5,8 @@ extern "C" { #endif +#include <stdio.h> + #define FSETLOCKING_QUERY 0 #define FSETLOCKING_INTERNAL 1 #define FSETLOCKING_BYCALLER 2 |