shithub: riscv

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