diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-27 12:53:05 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-27 12:53:05 +0100 |
commit | 1577217ce13a8e2889f54f5568a98a32573df2e0 (patch) | |
tree | 1acb294a424fb3524872bef1d4dfff1e3b2f1e83 | |
parent | 23bb276fcdd6cc3b57e7fc0eae2a614a798cfddf (diff) | |
download | serenity-1577217ce13a8e2889f54f5568a98a32573df2e0.zip |
LibC: Let's remember that headers are in C.
-rw-r--r-- | LibC/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/stdio.h b/LibC/stdio.h index 990559f110..2413f236ba 100644 --- a/LibC/stdio.h +++ b/LibC/stdio.h @@ -30,7 +30,7 @@ struct __STDIO_FILE { char* buffer; size_t buffer_size; size_t buffer_index; - bool have_ungotten; + int have_ungotten; char ungotten; char default_buffer[BUFSIZ]; }; |