shithub: riscv

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