git: 9front

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