shithub: riscv

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