1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 // NULL is rdefined in stddef.h
5 #define NULL ((void*) 0)
7 // These are headers bundled with Clang.
12 typedef __builtin_va_list
va_list;
16 typedef __typeof__(sizeof(int)) size_t;
20 typedef __typeof__(*L
"") wchar_t;
23 extern void foo(wchar_t x
);
24 extern void bar(size_t x
);
25 void *baz(void) { return NULL
; }