Module: Mesa Branch: main Commit: 3c57d05b47a739cdff8a6e9c4aa8f3aeba83bec9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3c57d05b47a739cdff8a6e9c4aa8f3aeba83bec9
Author: Ella Stanforth <[email protected]> Date: Wed Sep 14 11:06:12 2022 +0000 util: fix missing fcntl.h on musl Reviewed-by: Chia-I Wu <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18617> --- src/util/mesa_cache_db.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/mesa_cache_db.c b/src/util/mesa_cache_db.c index be247ee22f4..1619ad239f8 100644 --- a/src/util/mesa_cache_db.c +++ b/src/util/mesa_cache_db.c @@ -11,6 +11,7 @@ #if DETECT_OS_WINDOWS == 0 +#include <fcntl.h> #include <stddef.h> #include <stdlib.h> #include <string.h>
