fix ctype abi junk (pointer should point to 0 slot, not -128 slot)
[musl] / src / network / netname.c
1 #include <netdb.h>
2
3 struct netent *getnetbyaddr(uint32_t net, int type)
4 {
5         return 0;
6 }
7
8 struct netent *getnetbyname(const char *name)
9 {
10         return 0;
11 }
12