add some missing header guards

This commit is contained in:
Kaspar Schleiser 2017-05-23 18:04:40 +02:00
parent ed31db4702
commit a65931c04a
3 changed files with 15 additions and 0 deletions

View File

@ -8,6 +8,9 @@
*
*/
#ifndef PERIPH_CPU_H
#define PERIPH_CPU_H
#include "periph_cpu_common.h"
#ifdef __cplusplus
@ -17,3 +20,5 @@ extern "C" {
#ifdef __cplusplus
}
#endif
#endif /* PERIPH_CPU_H */

View File

@ -8,6 +8,9 @@
*
*/
#ifndef PERIPH_CPU_H
#define PERIPH_CPU_H
#include "periph_cpu_common.h"
#ifdef __cplusplus
@ -17,3 +20,5 @@ extern "C" {
#ifdef __cplusplus
}
#endif
#endif /* PERIPH_CPU_H */

View File

@ -49,6 +49,9 @@
* with 48-bit ints.
*/
#ifndef QUAD_H
#define QUAD_H
#include <sys/types.h>
#include <limits.h>
@ -147,3 +150,5 @@ quad_t __xordi3(quad_t, quad_t);
#ifdef __cplusplus
}
#endif
#endif /* QUAD_H */