shithub: riscv

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