shithub: riscv

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