diff options
author | Elliott Hughes <enh@google.com> | 2014-12-29 21:17:56 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-12-29 21:17:56 +0000 |
commit | 538d7d838d82e29c738145431aa64c587dc84943 (patch) | |
tree | 1f367ec3ac66fe6c8dc6aefbf45f124ee0f0b5ef | |
parent | c43b17f0adac1092e221ce6166ca8bc464090525 (diff) | |
parent | d4d4c2456ac6649f65fd561998b2cb8eb2c97edd (diff) | |
download | bootable_recovery-538d7d838d82e29c738145431aa64c587dc84943.zip bootable_recovery-538d7d838d82e29c738145431aa64c587dc84943.tar.gz bootable_recovery-538d7d838d82e29c738145431aa64c587dc84943.tar.bz2 |
Merge "Fix missing #includes in bootable/recovery."
-rw-r--r-- | uncrypt/uncrypt.c | 1 | ||||
-rw-r--r-- | verifier_test.cpp | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/uncrypt/uncrypt.c b/uncrypt/uncrypt.c index 189fa57..e619237 100644 --- a/uncrypt/uncrypt.c +++ b/uncrypt/uncrypt.c @@ -39,6 +39,7 @@ // Recovery can take this block map file and retrieve the underlying // file data to use as an update package. +#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <stdarg.h> diff --git a/verifier_test.cpp b/verifier_test.cpp index 10a5dda..e2f3d10 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -14,12 +14,13 @@ * limitations under the License. */ +#include <errno.h> +#include <fcntl.h> +#include <stdarg.h> #include <stdio.h> #include <stdlib.h> -#include <stdarg.h> #include <sys/types.h> #include <sys/stat.h> -#include <fcntl.h> #include "common.h" #include "verifier.h" |