aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2022-02-05 02:17:29 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-02-05 02:17:29 +0000
commite535c25a5dbfeada46b8f51241ca10e2e6a22179 (patch)
treee073f8277d6aa17db9c3214ba49b68ff4b420e02
parent0f957a72abc4f90fa8ee5005be2e2755ea5b1523 (diff)
parent18ac24edae815f39229a2d69be1195bd8ea5fddd (diff)
downloadvboot_reference-e535c25a5dbfeada46b8f51241ca10e2e6a22179.tar.gz
Fix building futility against musl am: edce551727 am: 2f12db35a6 am: 18ac24edae
Original change: https://android-review.googlesource.com/c/platform/external/vboot_reference/+/1969999 Change-Id: I54e7b5f5c463e7c44064a67015b40e796c34a52c
-rw-r--r--futility/dump_kernel_config_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/futility/dump_kernel_config_lib.c b/futility/dump_kernel_config_lib.c
index c2d59433..4fe990c3 100644
--- a/futility/dump_kernel_config_lib.c
+++ b/futility/dump_kernel_config_lib.c
@@ -5,10 +5,10 @@
* Exports the kernel commandline from a given partition/image.
*/
+#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <sys/mman.h>
-#include <sys/fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>