shithub: plan9front

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