shithub: riscv

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