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:
parent
a7f1d892a9
commit
d7a41579e5
12 changed files with 92 additions and 2 deletions
13
LibC/mntent.cpp
Normal file
13
LibC/mntent.cpp
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include <mntent.h>
|
||||
#include <assert.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
struct mntent* getmntent(FILE* stream)
|
||||
{
|
||||
assert(false);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue