blob: 58597b18096aa1c10bc8805bad5c33ef59e2e2fa [file] [log] [blame]
Eli Friedmanbc887452008-09-02 05:19:23 +00001// RUN: clang %s -fsyntax-only -verify
2
3typedef union {
4 union wait *__uptr;
5 int *__iptr;
6} __WAIT_STATUS __attribute__ ((__transparent_union__));
7
8extern int wait (__WAIT_STATUS __stat_loc);
9
10void fastcgi_cleanup() {
11 int status = 0;
12 wait(&status);
13}
14