git: 9front

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