git: 9front

ref: aa219605f0375f72520bfe796b9db938d11d0fcc
dir: /sys/src/ape/lib/v/max.c/

View raw version
#define _RESEARCH_SOURCE
#include <libv.h>

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