git: 9front

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