1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

added missing header guard to native board.h

This commit is contained in:
Oleg Hahm 2013-10-29 16:34:59 +01:00
parent ec3234a8f7
commit 6d109e9849

View File

@ -1,3 +1,6 @@
#ifndef BOARD_H
#define BOARD_H
/**
* Native Board interface
*
@ -31,3 +34,4 @@ void _native_LED_RED_TOGGLE(void);
#define LED_RED_TOGGLE (_native_LED_RED_TOGGLE())
typedef uint16_t radio_packet_length_t;
#endif /* BOARD_H */