shithub: riscv

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