diff options
author | Elliott Hughes <enh@google.com> | 2014-12-29 13:29:50 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-12-29 13:29:50 -0800 |
commit | 40360b379cee07574493f5a450cf1c6e531bdde0 (patch) | |
tree | 2b16a06dc25f1c3f51e94dc099513464f615e622 /libc/bionic/bionic_systrace.cpp | |
parent | 0a552407ada6fc718be016df0902f6c23aa88eea (diff) | |
download | android_bionic-40360b379cee07574493f5a450cf1c6e531bdde0.tar.gz android_bionic-40360b379cee07574493f5a450cf1c6e531bdde0.tar.bz2 android_bionic-40360b379cee07574493f5a450cf1c6e531bdde0.zip |
Remove bogus transitive includes.
<signal.h> shouldn't get you the contents of <errno.h>, and <fcntl.h>
shouldn't get you the contents of <unistd.h>.
Change-Id: I347499cd8671bfee98e6b8e875a97cab3a3655d3
Diffstat (limited to 'libc/bionic/bionic_systrace.cpp')
-rw-r--r-- | libc/bionic/bionic_systrace.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/bionic/bionic_systrace.cpp b/libc/bionic/bionic_systrace.cpp index f5be41553..c74a52c09 100644 --- a/libc/bionic/bionic_systrace.cpp +++ b/libc/bionic/bionic_systrace.cpp @@ -15,6 +15,7 @@ */ #include <cutils/trace.h> +#include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> |