fs/mfs: Remove a few assert.h includes
[minix3.git] / minix / include / net / gen / eth_hdr.h
blob3d882f7e80749d04cb1db4dc68f4643d340a4421
1 /*
2 server/ip/gen/eth_hdr.h
3 */
5 #ifndef __SERVER__IP__GEN__ETH_HDR_H__
6 #define __SERVER__IP__GEN__ETH_HDR_H__
8 #include <net/if_ether.h>
10 typedef struct eth_hdr
12 ether_addr_t eh_dst;
13 ether_addr_t eh_src;
14 ether_type_t eh_proto;
15 } eth_hdr_t;
17 #endif /* __SERVER__IP__GEN__ETH_HDR_H__ */