blob: b13b5dcaef7a9c0ace8d586d9a31106186ebd9ce (
plain)
1
2
3
4
5
6
7
8
|
/* { 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";
|