mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
16 lines
225 B
C
16 lines
225 B
C
#ifndef MSL_MATH_API_H
|
|
#define MSL_MATH_API_H
|
|
#include <types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int __fpclassify(long double);
|
|
int __fpclassifyd(double);
|
|
int __fpclassifyf(float);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|