fix: missing math.h for NAN

This commit is contained in:
nekosu 2024-06-06 11:52:15 +08:00 committed by Saúl Ibarra Corretgé
parent 8ac7c0d51f
commit 22c10224ac

View file

@ -30,6 +30,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <math.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {