summaryrefslogtreecommitdiff
path: root/tests/test_foobar.c
blob: bcde7493aba534f39149bf161e703fd261ec08a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#undef NDEBUG

#include <assert.h>

#include "../src/common.h"

int main(void)
{
    assert(foobar_internal(2, 3) == 5);
    return 0;
}