diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-17 13:57:05 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-17 13:57:05 (GMT) |
commit | 4cff340de2d7dfa7e14e137a2f71baa77a1ee18d (patch) | |
tree | f1238d430fcd0aa378cc9a32683eb38531337ab7 /src/tests | |
parent | d2feec238154abc11a0ac671fb5043b3fa6fafe5 (diff) |
Include inttypes.h
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/tng_io_read_pos.c | 4 | ||||
-rw-r--r-- | src/tests/tng_io_read_pos_util.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/tests/tng_io_read_pos.c b/src/tests/tng_io_read_pos.c index c1cec55..118ccef 100644 --- a/src/tests/tng_io_read_pos.c +++ b/src/tests/tng_io_read_pos.c @@ -13,6 +13,10 @@ * of the License, or (at your option) any later version. */ +#ifdef USE_STD_INTTYPES_H +#include <inttypes.h> +#endif + #include <stdlib.h> #include <stdio.h> #include "tng_io.h" diff --git a/src/tests/tng_io_read_pos_util.c b/src/tests/tng_io_read_pos_util.c index 0f81778..8d240e3 100644 --- a/src/tests/tng_io_read_pos_util.c +++ b/src/tests/tng_io_read_pos_util.c @@ -15,6 +15,10 @@ * of the License, or (at your option) any later version. */ +#ifdef USE_STD_INTTYPES_H +#include <inttypes.h> +#endif + #include <stdlib.h> #include <stdio.h> #include "tng_io.h" |