1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +00:00

LibC: Add most of the "header may make visible" dependencies from POSIX

This commit is contained in:
Tim Schumacher 2023-07-15 15:22:45 +02:00 committed by Andrew Kaster
parent 9410f0a96c
commit aae106e37b
21 changed files with 104 additions and 9 deletions

View file

@ -8,6 +8,10 @@
#define _STDIO_H // Make GMP believe we exist.
// Includes essentially mandated by POSIX:
// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html
#include <stddef.h>
#include <Kernel/API/POSIX/stdio.h>
#include <bits/FILE.h>
#include <limits.h>