shithub: riscv

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