summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/librdkafka-2.1.0/packaging/cmake/try_compile/regex_test.c
blob: 329098d209529c2409f04a1afa46e404b051aae2 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stddef.h>
#include <regex.h>

int main() {
        regcomp(NULL, NULL, 0);
        regexec(NULL, NULL, 0, NULL, 0);
        regerror(0, NULL, NULL, 0);
        regfree(NULL);
        return 0;
}