5abea63787ebb68076bef2fa03b3cbf6f85cefc1
[musl] / src / network / ent.c
1 #include <netdb.h>
2 #include "libc.h"
3
4 void sethostent(int x)
5 {
6 }
7
8 struct hostent *gethostent()
9 {
10         return 0;
11 }
12
13 struct netent *getnetent()
14 {
15         return 0;
16 }
17
18 void endhostent(void)
19 {
20 }
21
22 weak_alias(sethostent, setnetent);
23 weak_alias(endhostent, endnetent);