summaryrefslogtreecommitdiff
path: root/APACHE_1_3_42/src/helpers/dummy.c
blob: cf938b8402cef240029a4c441f0048e0054e0db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* this file is used by TestLib */
/* the extra decl is to shutup gcc -Wmissing-prototypes */
extern int foo (const char *c);
int foo ( const char *c )
{
return *c;
}
int main(void) {
    const char *c = "";
    (void)foo(c);
    return 0;
}