blob: b13b5dcaef7a9c0ace8d586d9a31106186ebd9ce [file] [log] [blame]
/* { dg-do compile } */
int printf(const char *format, ...);
extern const char help_string[];
void app_opts(void) {
printf("%s", help_string);
}
const char help_string[] = "foo\n";