shithub: riscv

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