ent.c 435 B

1234567891011121314151617181920212223242526
  1. #include "libc.h"
  2. void sethostent(int x)
  3. {
  4. }
  5. void *gethostent()
  6. {
  7. return 0;
  8. }
  9. void endhostent(void)
  10. {
  11. }
  12. weak_alias(sethostent, setnetent);
  13. weak_alias(gethostent, getnetent);
  14. weak_alias(endhostent, endnetent);
  15. weak_alias(sethostent, setservent);
  16. weak_alias(gethostent, getservent);
  17. weak_alias(endhostent, endservent);
  18. weak_alias(sethostent, setprotoent);
  19. weak_alias(gethostent, getprotoent);
  20. weak_alias(endhostent, endprotoent);