summaryrefslogtreecommitdiff
path: root/example_int/example_int.c
blob: aa6b616e9cf73de26ebe52d04447dea6eea084e9 (plain) (blame)
1
2
3
4
5
6
#include "example_int.h"

int add(int v1, int v2) {
    return v1 + v2;
}