aboutsummaryrefslogtreecommitdiff
path: root/src/network/if_freenameindex.c
blob: 8170cec87ee7f7e9f533d0dc8ab9f867e416eb7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <net/if.h>
#include <stdlib.h>

void if_freenameindex(struct if_nameindex *idx)
{
	free(idx);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif