1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00

LibC: Avoid ninja-imports of system functions

This adds a new header <sys/internals.h>, which provides access to LibC internals.
This is in the interest of type-checking LibC itself, as well as enabling less-hacky
access for uses like LinkDemo.

And, of course, this progresses LibC towards building cleanly with -Wmissing-declarations.
This commit is contained in:
Ben Wiederhake 2020-08-12 01:58:50 +02:00 committed by Andreas Kling
parent 9221a25bbc
commit 9d2d97a059
6 changed files with 49 additions and 14 deletions

View file

@ -35,6 +35,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/internals.h>
#include <sys/mman.h>
// FIXME: Thread safety.