summaryrefslogtreecommitdiff
path: root/tests/projects/nim/link_library/headers/test_header.h
blob: 4b71d3173047d54a1238fccec4f2e81d996cfb46 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef TEST_HEADER_H
#define TEST_HEADER_H

#define TEST_HEADER_VAL 123

static int test_add_five(int x) {
    return x + 5;
}

#endif