shithub: riscv

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