shithub: front

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