shithub: plan9front

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