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
commit d7a41579e5
Notes: sideshowbarker 2024-07-19 18:32:44 +09:00
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;
}
}