shithub: riscv

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