shithub: riscv

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