8sa1-gcc/gcc/testsuite/gcc.dg/format/sys_format.c
Jakub Jelinek 831a2e2f86 Remove svn:executable property from a couple of text files
which shouldn't be executable.

From-SVN: r267873
2019-01-12 01:20:04 +01:00

15 lines
401 B
C

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