git: 9front

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