shithub: front

ref: 9676bec5eb89ce2e02503f9e31d73984639c12d9
dir: /sys/src/ape/lib/v/min.c/

View raw version
#define _RESEARCH_SOURCE
#include <libv.h>

min(int a, int b)
{
	return (a<b? a: b);
}