git: 9front

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