summaryrefslogtreecommitdiff
path: root/tests/actions/package/localpkg/libfoo/src/foo.cpp
blob: b13e8e7619129cf155d529a1172c926849229a23 (plain)
1
2
3
4
5
6
7
8
#include "add.h"
#include "sub.h"
#include "foo.h"

int foo(int a, int b)
{
    return add(sub(a, b), sub(b, a));
}