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

periph/rtt: add missing std header

The periph/rtt.h uses `uintX_t` typedefs but misses the required
standard header file, namely `stdint.h`, which is added here.
This commit is contained in:
smlng 2018-09-07 14:54:23 +02:00
parent 17b14cd8a0
commit a9e848f648

View File

@ -23,6 +23,8 @@
#ifndef PERIPH_RTT_H
#define PERIPH_RTT_H
#include <stdint.h>
#include "periph_conf.h"
#ifdef __cplusplus