synccall: add separate exit_sem to fix thread release logic bug
[musl.git] / src / network / ent.c
blobc6e012306dd8b1674f2a54a45e6151833d60356a
1 #include <netdb.h>
3 void sethostent(int x)
7 struct hostent *gethostent()
9 return 0;
12 struct netent *getnetent()
14 return 0;
17 void endhostent(void)
21 weak_alias(sethostent, setnetent);
22 weak_alias(endhostent, endnetent);