mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
12 lines
139 B
C++
12 lines
139 B
C++
#include <assert.h>
|
|
#include <mntent.h>
|
|
|
|
extern "C" {
|
|
|
|
struct mntent* getmntent(FILE*)
|
|
{
|
|
ASSERT_NOT_REACHED();
|
|
return nullptr;
|
|
}
|
|
}
|