shithub: plan9front

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