freebsd-nq/test/Sema/format-string-percentm.c

8 lines
225 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -fsyntax-only -verify %s -triple i686-pc-linux-gnu
2009-06-02 17:58:47 +00:00
2010-02-16 09:31:36 +00:00
// PR 4142 - support glibc extension to printf: '%m' (which prints strerror(errno)).
2009-06-02 17:58:47 +00:00
int printf(char const*,...);
void percentm(void) {
printf("%m");
}