aboutsummaryrefslogtreecommitdiff
path: root/example/shared_library/test.c
blob: b60a6a5a752f2ecb4cb9c549046a5ad930616900 (plain)
1
2
3
4
5
6
7
#include "mathtest.h"
#include <assert.h>

int main(int argc, char **argv) {
    assert(add(42, 1337) == 1379);
    return 0;
}