shithub: front

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