2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2021-01-17 04:22:20 -03:00
|
|
|
#include <AK/Format.h>
|
2018-11-07 07:23:16 -02:00
|
|
|
#include <assert.h>
|
2019-06-07 06:49:03 -03:00
|
|
|
#include <mntent.h>
|
2018-11-07 07:23:16 -02:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
2018-11-09 07:09:46 -02:00
|
|
|
struct mntent* getmntent(FILE*)
|
2018-11-07 07:23:16 -02:00
|
|
|
{
|
2021-01-17 04:22:20 -03:00
|
|
|
dbgln("FIXME: Implement getmntent()");
|
|
|
|
|
TODO();
|
2018-11-07 07:23:16 -02:00
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|