shithub: riscv

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