1/*
2 * This tests the use of the character class regexp syntax
3 * '[[:something]]' in the ini file, as part of a property value.
4 *
5 * Compile it with:
6 *   gcc -c -g test38-char-class-in-ini-v1.c
7 *
8 */
9
10struct S
11{
12  int m0;
13};
14
15void
16foo(struct S* s __attribute__((unused)))
17{
18}
19
20void
21bar()
22{
23}
24