 05480c229a
			
		
	
	
		05480c229a
		
	
	
	
	
		
			
			This patch moves further includes (the network part and lib.h) in common/. It is the last part to get the netbsd libc to compile under minix. Further moves will be needed as we get the netbsd libc to compile minix itself. Also, this patch add #ifndef's to termios.h, as it create problems with netbsd's namespace.h.
		
			
				
	
	
		
			16 lines
		
	
	
		
			261 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			261 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
| server/ip/gen/eth_hdr.h
 | |
| */
 | |
| 
 | |
| #ifndef __SERVER__IP__GEN__ETH_HDR_H__
 | |
| #define __SERVER__IP__GEN__ETH_HDR_H__
 | |
| 
 | |
| typedef struct eth_hdr
 | |
| {
 | |
| 	ether_addr_t eh_dst;
 | |
| 	ether_addr_t eh_src;
 | |
| 	ether_type_t eh_proto;
 | |
| } eth_hdr_t;
 | |
| 
 | |
| #endif /* __SERVER__IP__GEN__ETH_HDR_H__ */
 |