mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 03:14:58 +00:00
13 lines
134 B
C++
13 lines
134 B
C++
#include <mntent.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
struct mntent* getmntent(FILE*)
|
|
{
|
|
assert(false);
|
|
return nullptr;
|
|
}
|
|
|
|
}
|
|
|