2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-03-25 15:53:29 +00:00
Files
xNBA/src/include/ipxe/rarp.h
Piotr Jaroszyński b9eaf24df2 [build] Fix misaligned table entries when using gcc 4.5
Declarations without the accompanying __table_entry cause misalignment
of the table entries when using gcc 4.5.  Fix by adding the
appropriate __table_entry macro or (where possible) by removing
unnecessary forward declarations.

Signed-off-by: Piotr Jaroszyński <p.jaroszynski@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2010-08-20 10:13:04 +01:00

17 lines
249 B
C

#ifndef _IPXE_RARP_H
#define _IPXE_RARP_H
/** @file
*
* Reverse Address Resolution Protocol
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
#include <ipxe/netdevice.h>
extern struct net_protocol rarp_protocol __net_protocol;
#endif /* _IPXE_RARP_H */