shithub: riscv

ref: 6972974f8df3ead3043185c046b7871110b85b79
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);
}