3 // Test this without pch.
4 // RUN: %clang_cc1 %s -include %s -verify -fsyntax-only
7 // RUN: %clang_cc1 %s -emit-pch -o %t
8 // RUN: %clang_cc1 %s -include-pch %t -verify -fsyntax-only
10 // expected-no-diagnostics
16 // __stdcall is defined as __attribute__((__stdcall__)) for targeting mingw32.
21 #define STDCALL __stdcall
23 void STDCALL
Foo(void);
27 void STDCALL
Foo(void)