summaryrefslogtreecommitdiff
path: root/tests/projects/package/basic/src/main.c
blob: 740b34694eeb4a9d277badc88bfd23843f91aa55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <pcre2.h>

int test();

int main(int argc, char** argv)
{
    printf("hello world!\n");
    pcre2_compile(0, 0, 0, 0, 0, 0);
    test();
    return 0;
}