shithub: front

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