1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

OP-1474 Add missing stdint.h include to mathmisc.h

This commit is contained in:
Stefan Karlsson 2014-09-10 01:03:49 +02:00
parent 7afb211330
commit 344172e879

View File

@ -32,6 +32,7 @@
#define MATHMISC_H
#include <math.h>
#include <stdint.h>
// returns min(boundary1,boundary2) if val<min(boundary1,boundary2)
// returns max(boundary1,boundary2) if val>max(boundary1,boundary2)