shithub: front

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