"implement" getnetbyaddr and getnetbyname

these are useless legacy functions but some old software contains
cruft that expects them to exist...
This commit is contained in:
Rich Felker 2011-07-12 02:52:06 -04:00
parent 95a85e047e
commit c3c5e88c31

12
src/network/netname.c Normal file
View File

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