shithub: front

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