git: 9front

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