shithub: riscv

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