aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/format/ext-10.c
blob: 4b3ad21f0768bf79ee86e41b4b475f9d68041373 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test for scanf format extensions using formats from C23.  */
/* { dg-do compile } */
/* { dg-options "-std=gnu23 -Wformat" } */

#include "format.h"

void
foo (u_quad_t *uqp, unsigned long long int *ullp)
{
  /* Deprecated length modifiers with %b.  */
  scanf ("%qb", uqp);
  scanf ("%Lb", ullp);
}