Listing 1

/* File: addition.chf */ 
int addition(int a, int b) { 
    int c; 
    c = a + b; 
    return c; 
}