1
0

ent.c 233 B

12345678910111213141516171819202122
  1. #include <netdb.h>
  2. void sethostent(int x)
  3. {
  4. }
  5. struct hostent *gethostent()
  6. {
  7. return 0;
  8. }
  9. struct netent *getnetent()
  10. {
  11. return 0;
  12. }
  13. void endhostent(void)
  14. {
  15. }
  16. weak_alias(sethostent, setnetent);
  17. weak_alias(endhostent, endnetent);