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

added missing header guards

This commit is contained in:
Oleg Hahm 2013-08-15 19:39:29 +02:00
parent 701b8177fb
commit 2d4de90a9c
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#ifndef NATIVENET_H
#define NATIVENET_H
#include <net/ethernet.h>
#define RX_BUF_SIZE (10)
@ -27,3 +30,4 @@ uint16_t nativenet_set_pan(uint16_t pan);
uint16_t nativenet_get_pan();
void nativenet_switch_to_rx();
#endif /* NATIVENET_H */

View File

@ -1,3 +1,6 @@
#ifndef NATIVENET_INTERNAL_H
#define NATIVENET_INTERNAL_H
#include "tap.h"
#define NNEV_PWRDWN 0x01
@ -22,3 +25,4 @@ extern struct rx_buffer_s _nativenet_rx_buffer[];
extern volatile uint8_t rx_buffer_next;
void _nativenet_handle_packet(radio_packet_t *packet);
#endif /* NATIVENET_INTERNAL_H */