github.com/afumu/libc@v0.0.6/musl/src/network/netname.c (about)

     1  #include <netdb.h>
     2  
     3  struct netent *getnetbyaddr(uint32_t net, int type)
     4  {
     5  	return 0;
     6  }
     7  
     8  struct netent *getnetbyname(const char *name)
     9  {
    10  	return 0;
    11  }
    12