git: 9front

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