summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/v/max.c
blob: c8a1055672fc2ac44deb9dcf1df49fb3195b6db3 (plain)
1
2
3
4
5
6
7
#define _RESEARCH_SOURCE
#include <libv.h>

max(int a, int b)
{
	return (a>b? a: b);
}