shithub: riscv

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