shithub: riscv

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