From 4a0ed9cb424ea6ea1c1c86827dff7eee442fb6ca Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 22 Apr 2016 01:53:19 +0200 Subject: [PATCH] Declare printf() before using it in std_vector example Just add missing #include . --- Examples/c/std_vector/runme.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Examples/c/std_vector/runme.c b/Examples/c/std_vector/runme.c index ec43f7505..7761b5747 100644 --- a/Examples/c/std_vector/runme.c +++ b/Examples/c/std_vector/runme.c @@ -1,3 +1,5 @@ +#include + #include "example_wrap.h" int main() {