shithub: riscv

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