shithub: front

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