shithub: riscv

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