mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
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*)
|
||
|
|
{
|
||
|
|
}
|