shithub: riscv

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