shithub: riscv

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