shithub: front

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