shithub: front

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