noether.c 416 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. ethertxpkt(int, Etherpkt*, int, int)
  27. {
  28. return -1;
  29. }
  30. int
  31. bootpboot(int, char*, Boot*)
  32. {
  33. return -1;
  34. }
  35. void*
  36. pxegetfspart(int, char*, int)
  37. {
  38. return nil;
  39. }