shithub: riscv

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