noether.c 358 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #include "u.h"
  2. #include "lib.h"
  3. #include "mem.h"
  4. #include "dat.h"
  5. #include "fns.h"
  6. #include "io.h"
  7. int
  8. etherinit(void)
  9. {
  10. return -1;
  11. }
  12. void
  13. etherinitdev(int, char*)
  14. {
  15. }
  16. void
  17. etherprintdevs(int)
  18. {
  19. }
  20. int
  21. etherrxpkt(int, Etherpkt*, int)
  22. {
  23. return -1;
  24. }
  25. int
  26. bootpboot(int, char*, Boot*)
  27. {
  28. return -1;
  29. }
  30. void*
  31. pxegetfspart(int, char*, int)
  32. {
  33. return nil;
  34. }