xref: /inferno-os/os/boot/pc/noether.c (revision 6cde411a8ffd477459336cedf48034e46f56f913)
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 
8 int
9 etherinit(void)
10 {
11 	return -1;
12 }
13 
14 void
15 etherinitdev(int, char*)
16 {
17 }
18 
19 void
20 etherprintdevs(int)
21 {
22 }
23 
24 int
25 etherrxpkt(int, Etherpkt*, int)
26 {
27 	return -1;
28 }
29 
30 int
31 ethertxpkt(int, Etherpkt*, int, int)
32 {
33 	return -1;
34 }
35 
36 int
37 bootpboot(int, char*, Boot*)
38 {
39 	return -1;
40 }
41 
42 void*
43 pxegetfspart(int, char*, int)
44 {
45 	return nil;
46 }
47