wmii/lib/libstuff/util/max.c

11 lines
152 B
C
Raw Normal View History

2010-05-22 06:52:47 +04:00
/* Written by Kris Maglione <maglione.k at Gmail> */
/* Public domain */
#include "util.h"
int
max(int a, int b) {
if(a > b)
return a;
return b;
}