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

sys/ztimer: add missing inttypes.h includes

This commit is contained in:
Kaspar Schleiser 2020-11-26 13:21:07 +01:00
parent aabd5eaca5
commit 7fe0d5cba8
4 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@
*/
#include <stdio.h>
#include <inttypes.h>
#include "ztimer/convert.h"

View File

@ -23,6 +23,7 @@
*/
#include <stdint.h>
#include <inttypes.h>
#include "frac.h"
#include "assert.h"

View File

@ -21,6 +21,7 @@
*/
#include <stdio.h>
#include <inttypes.h>
#include "ztimer/convert.h"
#include "ztimer/convert_shift.h"

View File

@ -24,6 +24,7 @@
*/
#include <assert.h>
#include <stdint.h>
#include <inttypes.h>
#include "kernel_defines.h"
#include "irq.h"