view gcc/testsuite/gcc.dg/format/sys_format.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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);
}