1#include <stdio.h>
2#include <string.h>
3
4int
5main (int argc, char *argv[])
6{
7 int ret;
8 char buf [1024] = "Ooops";
9
10 ret = sscanf ("static char Term_bits[] = {", "static char %s = {", buf);
11 printf (format: "ret: %d, name: %s\n", ret, buf);
12
13 return strcmp (buf, "Term_bits[]") != 0 || ret != 1;
14}
15

source code of glibc/stdio-common/bug11.c