blob: 31c93914b819da5085daca00d6549449e2cdee34 [file] [log] [blame]
// RUN: %clang_cc1 %s -fsyntax-only -verify
typedef union {
union wait *__uptr;
int *__iptr;
} __WAIT_STATUS __attribute__ ((__transparent_union__));
extern int wait (__WAIT_STATUS __stat_loc);
void fastcgi_cleanup() {
int status = 0;
wait(&status);
}