shithub: riscv

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