shithub: riscv

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