shithub: riscv

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