libraries/libnx/inc/public/nox/math.h

14 lines
305 B
C
Raw Normal View History

2023-05-02 19:23:32 +00:00
// This file is part of noxos and licensed under the MIT open source license
#ifndef LIBNX_MATH_H
#define LIBNX_MATH_H
#include "stdtypes.h"
int64_t min(int64_t a, int64_t b);
int64_t max(int64_t a, int64_t b);
double pow(double base, int64_t exponent);
int64_t abs(int64_t n);
2023-05-02 19:23:32 +00:00
#endif //LIBNX_MATH_H