simple_math.c
author viric@llimona
Mon, 24 Sep 2007 13:59:40 +0200
changeset 38 f1e581c862d5
parent 34 7486e269b794
child 43 625794738afc
permissions -rw-r--r--
Improved help. Moving to 0.2.

#include "main.h"

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