fix hf_colin compilation error

This commit is contained in:
Philippe Teuwen 2024-09-09 23:43:01 +02:00
commit 1fa84f203d

View file

@ -57,6 +57,10 @@ typedef unsigned _int64 uint64_t;
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS
#endif
// problem specific to arm-none-gcc provided by Debian:
// https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=953844
// => include <sys/types.h> before <inttypes.h>
#include <sys/types.h>
#include <inttypes.h>
#endif /* _WIN32 */