shithub: riscv

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