shithub: riscv

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