blob: 31c93914b819da5085daca00d6549449e2cdee34 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Eli Friedmanbc887452008-09-02 05:19:23 +00002
3typedef union {
Mike Stump1eb44332009-09-09 15:08:12 +00004 union wait *__uptr;
5 int *__iptr;
Eli Friedmanbc887452008-09-02 05:19:23 +00006} __WAIT_STATUS __attribute__ ((__transparent_union__));
7
8extern int wait (__WAIT_STATUS __stat_loc);
9
10void fastcgi_cleanup() {
Mike Stump1eb44332009-09-09 15:08:12 +000011 int status = 0;
12 wait(&status);
Eli Friedmanbc887452008-09-02 05:19:23 +000013}
14