mirror of
https://github.com/darlinghq/cctools-port.git
synced 2024-11-23 20:29:46 +00:00
9 lines
200 B
C
9 lines
200 B
C
/* See http://llvm.org/bugs/show_bug.cgi?id=4746 */
|
|
#ifdef __block
|
|
# undef __block
|
|
# include_next "unistd.h"
|
|
# define __block __attribute__((__blocks__(byref)))
|
|
#else
|
|
# include_next "unistd.h"
|
|
#endif
|