diff options
Diffstat (limited to 'libs/binder/OS.h')
| -rw-r--r-- | libs/binder/OS.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/binder/OS.h b/libs/binder/OS.h index 8dc1f6ae70..bb7caa951b 100644 --- a/libs/binder/OS.h +++ b/libs/binder/OS.h @@ -18,14 +18,13 @@ #include <stddef.h> #include <cstdint> -#include <android-base/result.h> #include <android-base/unique_fd.h> #include <binder/RpcTransport.h> #include <utils/Errors.h> namespace android::binder::os { -android::base::Result<void> setNonBlocking(android::base::borrowed_fd fd); +status_t setNonBlocking(android::base::borrowed_fd fd); status_t getRandomBytes(uint8_t* data, size_t size); |