mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:34:57 +00:00
Kernel+LibC: Stub out getifaddrs() and freeifaddrs()
These are required for some ports.
This commit is contained in:
parent
468ae105d8
commit
7b24fc6fb8
4 changed files with 66 additions and 0 deletions
18
Userland/Libraries/LibC/ifaddrs.cpp
Normal file
18
Userland/Libraries/LibC/ifaddrs.cpp
Normal 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*)
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue