Newer
Older
UbixOS / Dump / hybos / lib / math / max.c
@cwolsen cwolsen on 31 Oct 2018 55 bytes Big Dump
int max(int a, int b)
{
	return (a > b) ? a : b;
}