V9/libc/gen/max.c

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

max(a, b)
{
	return(a>b? a: b);
}