shithub: riscv

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