diff options
author | Colin Cross <ccross@android.com> | 2013-07-23 14:52:34 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2013-07-23 14:52:34 -0700 |
commit | f5f8fa0bbdc4ba8a15a386b66da30e4c1d89ec9d (patch) | |
tree | 3f53d556e3f29630668b01261d84ae23654ecb2f /include | |
parent | bdce8170479d0efb548514c1a290e1bfea711cfd (diff) | |
download | frameworks_native-f5f8fa0bbdc4ba8a15a386b66da30e4c1d89ec9d.zip frameworks_native-f5f8fa0bbdc4ba8a15a386b66da30e4c1d89ec9d.tar.gz frameworks_native-f5f8fa0bbdc4ba8a15a386b66da30e4c1d89ec9d.tar.bz2 |
libbinder: include sys/uio.h instead of cutils/uio.h
libbinder is only built for the target, where bionic will provide
uio, so it does not need to include the libcutils wrapper around
uio for windows.
Change-Id: Ifc2dd353bf7ed51bf08ec0ae91c43b12830f94ba
Diffstat (limited to 'include')
-rw-r--r-- | include/binder/BufferedTextOutput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/binder/BufferedTextOutput.h b/include/binder/BufferedTextOutput.h index adf3c32..9a7c43b 100644 --- a/include/binder/BufferedTextOutput.h +++ b/include/binder/BufferedTextOutput.h @@ -19,7 +19,7 @@ #include <binder/TextOutput.h> #include <utils/threads.h> -#include <cutils/uio.h> +#include <sys/uio.h> // --------------------------------------------------------------------------- namespace android { |