shithub: front

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