shithub: riscv

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