shithub: riscv

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