shithub: riscv

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