From d69b678a3bf87dab30f4cd7f866837c407ddf8fb Mon Sep 17 00:00:00 2001 From: Anderson Lizardo Date: Fri, 2 Dec 2011 14:20:15 -0400 Subject: [PATCH] hciemu: Fix build error Error: test/hciemu.c: In function 'create_snoop': test/hciemu.c:155: error: 'S_IRUSR' undeclared (first use in this function) test/hciemu.c:155: error: (Each undeclared identifier is reported only once test/hciemu.c:155: error: for each function it appears in.) test/hciemu.c:155: error: 'S_IWUSR' undeclared (first use in this function) test/hciemu.c:155: error: 'S_IRGRP' undeclared (first use in this function) test/hciemu.c:155: error: 'S_IROTH' undeclared (first use in this function) --- test/hciemu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/hciemu.c b/test/hciemu.c index 38918f525..f2879ba70 100644 --- a/test/hciemu.c +++ b/test/hciemu.c @@ -40,6 +40,7 @@ #include #include #include +#include #include #include -- 2.47.3