diff options
Diffstat (limited to '')
-rw-r--r-- | otafault/ota_io.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/otafault/ota_io.h b/otafault/ota_io.h index e119eef08..45d17b1bb 100644 --- a/otafault/ota_io.h +++ b/otafault/ota_io.h @@ -26,6 +26,8 @@ #include <stdio.h> #include <sys/stat.h> +#include <memory> + #include <android-base/unique_fd.h> #define OTAIO_CACHE_FNAME "/cache/saved.file" @@ -60,4 +62,8 @@ struct OtaCloser { using unique_fd = android::base::unique_fd_impl<OtaCloser>; +int ota_close(unique_fd& fd); + +int ota_fclose(std::unique_ptr<FILE, int (*)(FILE*)>& fh); + #endif |