shithub: front

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