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

struct netent *getnetbyaddr(uint32_t net, int type)
{
	return 0;
}

struct netent *getnetbyname(const char *name)
{
	return 0;
}



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