master
1#include <netdb.h>
2
3void sethostent(int x)
4{
5}
6
7struct hostent *gethostent()
8{
9 return 0;
10}
11
12struct netent *getnetent()
13{
14 return 0;
15}
16
17void endhostent(void)
18{
19}
20
21weak_alias(sethostent, setnetent);
22weak_alias(endhostent, endnetent);