1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

periph: fix periph/gpio_util.h header guards

This commit is contained in:
Kaspar Schleiser 2019-11-22 10:40:46 +01:00
parent 46c3964ee8
commit c87748f563

View File

@ -19,6 +19,9 @@
* @author Philipp-Alexander Blum <philipp-blum@jakiku.de>
*/
#ifndef PERIPH_GPIO_UTIL_H
#define PERIPH_GPIO_UTIL_H
#include "gpio.h"
#ifdef __cplusplus
@ -40,4 +43,5 @@ uint8_t gpio_util_shiftin(gpio_t data_pin, gpio_t clock_pin);
#ifdef __cplusplus
}
#endif
/** @} */
#endif /* PERIPH_GPIO_UTIL_H */
/** @} */