ent.c 214 B

123456789101112131415161718
  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);