shithub: front

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