mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
7b24fc6fb8
These are required for some ports.
19 lines
282 B
C++
19 lines
282 B
C++
/*
|
|
* 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*)
|
|
{
|
|
}
|