shithub: riscv

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