1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 22:24:57 +00:00
serenity/LibC/mntent.cpp
2019-06-07 11:49:03 +02:00

11 lines
139 B
C++

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