12 lines
243 B
C
12 lines
243 B
C
|
// 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
|