git: 9front

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