aboutsummaryrefslogtreecommitdiff
path: root/src/network/ent.c
blob: 33c5aa6d32cb7275a0d2b5cc33afd857dc2a2b9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <netdb.h>

void sethostent(int x)
{
}

struct hostent *gethostent()
{
	return 0;
}

struct netent *getnetent()
{
	return 0;
}

void endhostent(void)
{
}

weak_alias(sethostent, setnetent);
weak_alias(endhostent, endnetent);


#ifdef TEST
int
main(void) {
	return 0;
}
#endif