1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

LibC: A bunch of compat work towards porting GCC.

This commit is contained in:
Andreas Kling 2019-02-24 15:19:32 +01:00
parent 9fd4f4862b
commit 93c0dfd1d7
18 changed files with 166 additions and 13 deletions

View file

@ -0,0 +1,12 @@
#pragma once
#include <sys/cdefs.h>
#include <stddef.h>
__BEGIN_DECLS
#ifndef WEOF
#define WEOF (0xffffffffu)
#endif
__END_DECLS