Newer
Older
UbixOS / Dump / hybos / lib / math / max.c
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 51 bytes Sync
int max(int a, int b)
{
	return (a > b) ? a : b;
}