ladybird/LibC/mntent.cpp
2018-11-09 10:09:46 +01:00

14 lines
134 B
C++

#include <mntent.h>
#include <assert.h>
extern "C" {
struct mntent* getmntent(FILE*)
{
assert(false);
return nullptr;
}
}