shithub: front

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