shithub: riscv

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