ladybird/Userland/Libraries/LibC/mntent.cpp

20 lines
308 B
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Format.h>
#include <assert.h>
2019-06-07 11:49:03 +02:00
#include <mntent.h>
extern "C" {
struct mntent* getmntent(FILE*)
{
dbgln("FIXME: Implement getmntent()");
TODO();
return nullptr;
}
}