V9/libc/gen/min.c

Compare this file to the similar file:
Show the results in this format:

min(a,b)
{
	return (a<b? a: b);
}