shithub: front

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