shithub: plan9front

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