shithub: riscv

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