shithub: front

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