musl/src/network/netname.c
Rich Felker c3c5e88c31 "implement" getnetbyaddr and getnetbyname
these are useless legacy functions but some old software contains
cruft that expects them to exist...
2011-07-12 02:52:06 -04:00

13 lines
150 B
C

#include <netdb.h>
struct netent *getnetbyaddr(uint32_t net, int type)
{
return 0;
}
struct netent *getnetbyname(const char *name)
{
return 0;
}