From 6594fbe9c88c235b1d3f1d04a7b94560bc34781f Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 3 Jul 2023 11:25:26 -0700 Subject: fbida: Include missing Fixes build on musl ../git/gfx.h:43:5: error: unknown type name 'dev_t'; did you mean 'div_t'? dev_t devnum; ^~~~~ div_t TOPDIR/build/tmp/work/cortexa57-yoe-linux-musl/fbida/2.14+gitAUTOINC+eb769e3d7f-r0/recipe-sysroot/usr/include/stdlib.h:64:35: note: 'div_t' declared here typedef struct { int quot, rem; } div_t; ^ 1 error generated Signed-off-by: Khem Raj --- gfx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gfx.h') diff --git a/gfx.h b/gfx.h index e6057b4..630cfd2 100644 --- a/gfx.h +++ b/gfx.h @@ -1,6 +1,6 @@ #include #include -#include /* dev_t */ +#include /* dev_t */ #include #include -- cgit