From 8e70b0d5c3ba9cc7e2cf6025a9ae0ae157f5acc9 Mon Sep 17 00:00:00 2001 From: Nick Kralevich Date: Wed, 23 Jan 2013 16:49:47 -0800 Subject: [PATCH] prctl.h: include sys/cdefs.h prctl.h uses __BEGIN_DECLS but fails to include sys/cdefs.h (where it's defined). Code which includes prctl.h without previously including sys/cdefs.h will fail to compile. Fixed. Change-Id: If4c9f3308f08b93596dcd00e351ae786807e9320 --- libc/include/sys/prctl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/include/sys/prctl.h b/libc/include/sys/prctl.h index 359d684f3..00e583742 100644 --- a/libc/include/sys/prctl.h +++ b/libc/include/sys/prctl.h @@ -29,6 +29,7 @@ #define _SYS_PRCTL_H #include +#include __BEGIN_DECLS