git: 9front

ref: 69481a8a50fc689c00b82fe96640856b6a83659b
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);
}