summaryrefslogtreecommitdiff
path: root/tests/projects/c/shared_library_export_list/src/foo.c
blob: e068c198355bd7f17e3926513bb84ceea49d6f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "foo.h"
#include <stdio.h>

void stub() {
    printf("stub\n");
}

int sub(int a, int b) {
    return a - b;
}

int add(int a, int b) {
    return a + b;
}