mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +00:00
Miscellaneous compat work while seeing if GNU coreutils would build.
This commit is contained in:
parent
a7f1d892a9
commit
d7a41579e5
Notes:
sideshowbarker
2024-07-19 18:32:44 +09:00
Author: https://github.com/awesomekling
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