shithub: riscv

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