1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

LibC: Let's remember that headers are in C.

This commit is contained in:
Andreas Kling 2019-03-27 12:53:05 +01:00
parent 23bb276fcd
commit 1577217ce1

View file

@ -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];
};