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

12 lines
243 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"
uint64_t min(uint64_t a, uint64_t b);
uint64_t max(uint64_t a, uint64_t b);
#endif //LIBNX_MATH_H