shithub: riscv

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