aboutsummaryrefslogtreecommitdiff
path: root/src/network/serv.c
blob: c19b2f56a0b5edc316a9ec85e6bbddf65a342050 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <netdb.h>

void endservent(void)
{
}

void setservent(int stayopen)
{
}

struct servent *getservent(void)
{
	return 0;
}


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