shithub: riscv

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