2018-11-07 10:23:16 +01:00
|
|
|
#include <mntent.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2018-11-09 10:09:46 +01:00
|
|
|
struct mntent* getmntent(FILE*)
|
2018-11-07 10:23:16 +01:00
|
|
|
{
|
2019-04-23 21:52:02 +02:00
|
|
|
ASSERT_NOT_REACHED();
|
2018-11-07 10:23:16 +01:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|