git: 9front

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