mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 07:25:10 +00:00
13 lines
141 B
C++
13 lines
141 B
C++
#include <mntent.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
struct mntent* getmntent(FILE*)
|
|
{
|
|
ASSERT_NOT_REACHED();
|
|
return nullptr;
|
|
}
|
|
|
|
}
|
|
|