musl - an implementation of the standard library for Linux-based systems
blob: 89bafcc0ca6696ce98637c59009e2e79ef215f37 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <net/if.h>
#include <stdlib.h>
void if_freenameindex(struct if_nameindex *idx)
{
free(idx);
}
|