summaryrefslogtreecommitdiff
path: root/LibC/mntent.cpp
blob: 3cc16cc8bf1f62b21398e991829765dd75933680 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <assert.h>
#include <mntent.h>

extern "C" {

struct mntent* getmntent(FILE*)
{
    ASSERT_NOT_REACHED();
    return nullptr;
}
}