shithub: riscv

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