mirror of
https://github.com/xcat2/xNBA.git
synced 2026-03-25 15:53:29 +00:00
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>
17 lines
249 B
C
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 */
|