blob: cf938b8402cef240029a4c441f0048e0054e0db7 [file] [log] [blame]
/* 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;
}