shithub: riscv

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