shithub: plan9front

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