1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 07:25:10 +00:00
serenity/LibC/mntent.cpp

13 lines
141 B
C++

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