From 058509bd88c841f3e33c677bc7eeea72116e20e0 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Mon, 19 Dec 2022 09:10:14 -0700 Subject: [PATCH] Define float_t and double_t --- include/math.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/math.h b/include/math.h index 8063e8877..1f81a5f08 100644 --- a/include/math.h +++ b/include/math.h @@ -1,5 +1,9 @@ #include <openlibm_math.h> +// Missing typedefs +typedef float float_t; +typedef double double_t; + // Included to fix mesa issues #ifndef M_PI #define M_PI 3.14159265358979323846 /* pi */ -- GitLab