musl - an implementation of the standard library for Linux-based systems
blob: 41424e80637d71fe07a469cec972238575f97136 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <netdb.h>
void endservent(void)
{
}
void setservent(int stayopen)
{
}
struct servent *getservent(void)
{
return 0;
}
|