shithub: riscv

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