5 /* Define to 1 if you need to in order for `stat' and other things to work. */
8 +#ifndef TEMP_FAILURE_RETRY
9 +#define TEMP_FAILURE_RETRY(expression) \
11 + ({ long int __result; \
12 + do __result = (long int) (expression); \
13 + while (__result == -1L && errno == EINTR); \