• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
10 struct S
11 {
12   int m0;
13 };
14 
15 void
foo(struct S * s)16 foo(struct S* s __attribute__((unused)))
17 {
18 }
19 
20 void
bar()21 bar()
22 {
23 }
24