shithub: riscv

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