shithub: riscv

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