shithub: riscv

ref: 1613fd9f526dc5a5703bbeb1d84e59980db0845e
dir: /sys/src/ape/lib/v/max.c/

View raw version
#define _RESEARCH_SOURCE
#include <libv.h>

max(int a, int b)
{
	return (a>b? a: b);
}