MushOS  0.1
A UNIX-like OS prototype, written from scratch
Loading...
Searching...
No Matches
math.c
1#include "math.h"
2
3
4u_dword min(u_dword first, u_dword second) {
5 return first > second ? second : first;
6}
7
8u_dword max(u_dword first, u_dword second) {
9 return first > second ? first : second;
10}