From: Luka Perkov Date: Thu, 3 Jul 2014 10:28:23 +0000 (+0200) Subject: examples: add missing include X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=480b6c7da16e81ad7f358699028a08ef3b4249a1 examples: add missing include Patch fixes following build error: error: implicit declaration of function ‘close’ [-Werror=implicit-function-declaration] close(cl->s.fd.fd); Signed-off-by: Luka Perkov --- diff --git a/examples/ustream-example.c b/examples/ustream-example.c index 88c7381..3db56c4 100644 --- a/examples/ustream-example.c +++ b/examples/ustream-example.c @@ -5,6 +5,7 @@ #include #include #include +#include #include "ustream.h" #include "uloop.h"