mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
14 lines
141 B
C++
14 lines
141 B
C++
#include <mntent.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
struct mntent* getmntent(FILE*)
|
|
{
|
|
ASSERT_NOT_REACHED();
|
|
return nullptr;
|
|
}
|
|
|
|
}
|
|
|