aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/format/sys_format.c
blob: b69ae5bc5b52dde805e61025b0c20fa075e83cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Test system default printf formatter specifiers.  */
/* Origin: Kai Tietz <KaiTietz.@onevision.com> */
/* { dg-do compile { target { *-*-mingw* } } } */
/* { dg-options "-std=gnu89" } */

#define USE_SYSTEM_FORMATS
#include "format.h"

__attribute__((format(printf, 1, 2))) void foo (const char *, ...);

void bar (long long v1, long v2, int v3)
{
  foo ("%I64d %I32d %ld %d\n", v1, v2, v2, v3);
}