shithub: riscv

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