1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:57:46 +00:00

Miscellaneous compat work while seeing if GNU coreutils would build.

This commit is contained in:
Andreas Kling 2018-11-07 10:23:16 +01:00
parent a7f1d892a9
commit d7a41579e5
12 changed files with 92 additions and 2 deletions

13
LibC/mntent.cpp Normal file
View file

@ -0,0 +1,13 @@
#include <mntent.h>
#include <assert.h>
extern "C" {
struct mntent* getmntent(FILE* stream)
{
assert(false);
return nullptr;
}
}