test/Modules/compiler_builtins.m: Appease Cygwin to add -D__need_wint_t.

On Cygwin, at first, <stddef.h> is included without __need_wint_t.
Next, <stddef.h> is included with __need_wint_t, though Modules feature would not process <stddef.h> twice.
Then, wint_t is not found in system headers.

llvm-svn: 149500
This commit is contained in:
NAKAMURA Takumi 2012-02-01 14:09:19 +00:00
parent 53559c6aa0
commit d8f100f3b9
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
// RUN: rm -rf %t
// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t %s -Xclang -verify
// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t -D__need_wint_t %s -Xclang -verify
@import _Builtin_stdlib.float_constants;