xref: /plan9-contrib/sys/src/ape/lib/v/max.c (revision 9b943567965ba040fd275927fbe088656eb8ce4f)
1 #define _RESEARCH_SOURCE
2 #include <libv.h>
3 
4 max(int a, int b)
5 {
6 	return (a>b? a: b);
7 }
8