aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2022-01-13 13:42:54 -0800
committerColin Cross <ccross@android.com>2022-01-13 13:42:54 -0800
commit2d1fcf73d96703d735a7762f2bb9c93ff7b31ebe (patch)
treeea46036316b947eee7a58a701e5bc9844e681ba7
parent0fd3f6ac2e67f94316934acc63b7ebd55fee1a5d (diff)
downloadlibbrillo-2d1fcf73d96703d735a7762f2bb9c93ff7b31ebe.tar.gz
Add missing include
Add missing sys/types.h include to fix building against musl libc. Bug: 190084016 Test: m USE_HOST_HOST=true host-native Change-Id: Ic75cb8db8978c3478cce65ec8838228bd245950d
-rw-r--r--brillo/streams/file_stream.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/brillo/streams/file_stream.h b/brillo/streams/file_stream.h
index bf54617..e2e29dd 100644
--- a/brillo/streams/file_stream.h
+++ b/brillo/streams/file_stream.h
@@ -5,6 +5,8 @@
#ifndef LIBBRILLO_BRILLO_STREAMS_FILE_STREAM_H_
#define LIBBRILLO_BRILLO_STREAMS_FILE_STREAM_H_
+#include <sys/types.h>
+
#include <memory>
#include <base/files/file_path.h>