shithub: riscv

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