use a common definition of NULL as 0L for C and C++
[musl] / src / network / if_freenameindex.c
1 #include <net/if.h>
2 #include <stdlib.h>
3
4 void if_freenameindex(struct if_nameindex *idx)
5 {
6         free(idx);
7 }