math: move x86_64 exp2l implementation to exp2l.s from expl.s
[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