shithub: riscv

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