shithub: riscv

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