shithub: plan9front

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