git: 9front

ref: 206882e97c1ec7e785a8c83cc8d2ea361ab4408b
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);
}