mirror of
https://github.com/fluencelabs/musl
synced 2025-05-22 04:01:34 +00:00
these are useless legacy functions but some old software contains cruft that expects them to exist...
13 lines
150 B
C
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;
|
|
}
|
|
|