shithub: riscv

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