summaryrefslogtreecommitdiff
path: root/tests/projects/c/static_library/src/main.c
blob: a4c7694085681ed5cd53b5c2dcd7fdaba87a7f49 (plain)
1
2
3
4
5
6
7
#include "foo.h"
#include <stdio.h>

int main(int argc, char** argv) {
    printf("add(1, 2) = %d\n", add(1, 2));
    return 0;
}