git: 9front

ref: 7980c670a598eb7da99dbafd3b1e2e95c1c7b437
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);
}