shithub: front

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