Current build fails due to missing stdbool.h include: strace.c:102:1: error: unknown type name 'bool' strace.c: In function 'die_out_of_memory': strace.c:269:2: error: unknown type name 'bool'
Signed-off-by: Mike Frysinger <[email protected]> * strace.c: Include <stdbool.h> --- strace.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/strace.c b/strace.c index 8f8c74c..8e73a00 100644 --- a/strace.c +++ b/strace.c @@ -34,6 +34,7 @@ #include <sys/types.h> #include <stdarg.h> +#include <stdbool.h> #include <signal.h> #include <errno.h> #include <sys/param.h> -- 1.7.6.1 ------------------------------------------------------------------------------ Learn Windows Azure Live! Tuesday, Dec 13, 2011 Microsoft is holding a special Learn Windows Azure training event for developers. It will provide a great way to learn Windows Azure and what it provides. You can attend the event by watching it streamed LIVE online. Learn more at http://p.sf.net/sfu/ms-windowsazure _______________________________________________ Strace-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/strace-devel
