Update math.h

This commit is contained in:
coco875 2024-12-21 23:59:49 +01:00 committed by Lywx
parent 443b7ae602
commit 94d72ce408

View File

@ -50,11 +50,12 @@ typedef union {
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif f32 __sinf(f32) throw();
f32 __cosf(f32) throw();
}
#else
f32 __sinf(f32); f32 __sinf(f32);
f32 __cosf(f32); f32 __cosf(f32);
#ifdef __cplusplus
}
#endif #endif
#endif #endif