shithub: riscv

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