add missing stdint header

pull/11/merge
Nicolas Stalder 2018-09-10 20:27:15 +00:00
rodzic 2439c4f176
commit 8ebb73614d
3 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -2,6 +2,7 @@
#define _LOG_H
#include "app.h"
#include <stdint.h>
#ifndef DEBUG_LEVEL
#define DEBUG_LEVEL 0

Wyświetl plik

@ -1,3 +1,4 @@
#include <stdint.h>
#include <stdio.h>
void dump_hex(uint8_t * buf, int size)

Wyświetl plik

@ -1,6 +1,7 @@
#ifndef _UTIL_H
#define _UTIL_H
#include <stdint.h>
void dump_hex(uint8_t * buf, int size);