blob: a58bd42f821fca3d6d42470b02b956a8b55f99f4 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %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