aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2022-02-02 16:38:25 -0800
committerColin Cross <ccross@android.com>2022-02-02 16:38:25 -0800
commitedce551727c6e26e2b657b1755b8586facdc8fda (patch)
treee073f8277d6aa17db9c3214ba49b68ff4b420e02
parent0f957a72abc4f90fa8ee5005be2e2755ea5b1523 (diff)
downloadvboot_reference-edce551727c6e26e2b657b1755b8586facdc8fda.tar.gz
Include the standard fcntl.h instead of sys/fcntl.h Bug: 190084016 Test: m USE_HOST_MUSL=true host-native Change-Id: I33cb5ada0955e8b74c9082537853a4419758492f
-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>