shithub: plan9front

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