Kernel+LibC: Stub out getifaddrs() and freeifaddrs()

These are required for some ports.
This commit is contained in:
Idan Horowitz 2021-12-05 02:09:47 +02:00 committed by Brian Gianforcaro
commit 7b24fc6fb8
Notes: sideshowbarker 2024-07-17 22:23:49 +09:00
4 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,18 @@
/*
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibC/errno.h>
#include <LibC/ifaddrs.h>
int getifaddrs(struct ifaddrs**)
{
errno = ENOSYS;
return -1;
}
void freeifaddrs(struct ifaddrs*)
{
}