shithub: front

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