aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-02-19 16:12:05 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-02-19 16:13:07 +0100
commitd2010dfafb1b89c3d9d951262b5a552aa6b8bd4b (patch)
treed58abe6b8b4026bfdf935862fc2695baa5b9bdfd
parent98bdcfe56f5d17ee92910f57d968411a3381f326 (diff)
downloadcmocka-d2010dfafb1b89c3d9d951262b5a552aa6b8bd4b.tar.gz
cmocka-d2010dfafb1b89c3d9d951262b5a552aa6b8bd4b.tar.xz
cmocka-d2010dfafb1b89c3d9d951262b5a552aa6b8bd4b.zip
examples: Include stdint.h in simple example
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--example/simple_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/example/simple_test.c b/example/simple_test.c
index c6eee9c..cfb446c 100644
--- a/example/simple_test.c
+++ b/example/simple_test.c
@@ -1,6 +1,7 @@
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
+#include <stdint.h>
#include <cmocka.h>
/* A test case that does nothing and succeeds. */