1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
8 lines
225 B
C
8 lines
225 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s -triple i686-pc-linux-gnu
|
|
|
|
// PR 4142 - support glibc extension to printf: '%m' (which prints strerror(errno)).
|
|
int printf(char const*,...);
|
|
void percentm(void) {
|
|
printf("%m");
|
|
}
|