mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
6dd1600936
* Move qrand to libc64 * use an union to avoid type punning * __osMalloc * math64.c * fixed_point.h * sleep * aprintf.h * sprintf * malloc * use original names on aprintf.c and malloc.c * qrand cleanup pass * use original names of sleep.c * og names for sprintf * more cleanup * format * fixes * whoops * use ARRAY_COUNT again * comment * Use `fu` * forgot this one * review * fix * sneak a tiny cleanup
21 lines
466 B
C
21 lines
466 B
C
#ifndef LIBC_MATH_H
|
|
#define LIBC_MATH_H
|
|
|
|
#define M_PI 3.14159265358979323846f
|
|
#define M_SQRT2 1.41421356237309504880f
|
|
#define M_SQRT1_2 0.70710678118654752440f /* 1/sqrt(2) */
|
|
#define FLT_MAX 340282346638528859811704183484516925440.0f
|
|
#define SHT_MAX 32767.0f
|
|
#define SHT_MINV (1.0f / SHT_MAX)
|
|
|
|
float fabsf(float f);
|
|
#pragma intrinsic(fabsf)
|
|
#ifdef __GNUC__
|
|
#define fabsf(f) __builtin_fabsf((float)(f))
|
|
#endif
|
|
|
|
double sqrt(double d);
|
|
#pragma intrinsic(sqrt)
|
|
|
|
#endif
|