1 // Test this without pch.
2 // RUN: %clang_cc1 %s -include %s -verify -fsyntax-only
5 // RUN: %clang_cc1 %s -emit-pch -o %t
6 // RUN: %clang_cc1 %s -include-pch %t -verify -fsyntax-only
8 // expected-no-diagnostics
14 // __stdcall is defined as __attribute__((__stdcall__)) for targeting mingw32.
19 #define STDCALL __stdcall
21 void STDCALL
Foo(void);
25 void STDCALL
Foo(void)