blob: a42345a6e43a202f14225f57b836e6cebab4f6b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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*)
{
}
|