You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
246 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
# if __has_include_next("unitstd.h")
# include_next "unistd.h"
# endif
#endif