MushOS
0.1
A UNIX-like OS prototype, written from scratch
Loading...
Searching...
No Matches
math.c
1
#include "math.h"
2
3
4
u_dword min(u_dword first, u_dword second) {
5
return
first > second ? second : first;
6
}
7
8
u_dword max(u_dword first, u_dword second) {
9
return
first > second ? first : second;
10
}
lib
base
math.c
Generated on Sun Jan 29 2023 13:48:02 for MushOS by
1.9.5