shithub: plan9front

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