diff --git a/usr/include/arm-linux-ohosmusl/unistd.h b/usr/include/arm-linux-ohosmusl/unistd.h index b3448fc8e453eca2a19bd67c7dbde6f05773ac02..681f3d1cc816fb8fcd123d7a94075d61daa29faf 100644 --- a/usr/include/arm-linux-ohosmusl/unistd.h +++ b/usr/include/arm-linux-ohosmusl/unistd.h @@ -466,12 +466,11 @@ pid_t gettid(void); #ifdef _GNU_SOURCE #ifndef TEMP_FAILURE_RETRY #define MUSL_TEMP_FAILURE_RETRY(expression) \ - (__extension__\ - ({ long int __result;\ - do __result = (long int)(expression);\ - while(__result == -1L&& errno == EINTR);\ - __result;})\ -#endif + (__extension__\ + ({ long int __result;\ + do __result = (long int)(expression);\ + while(__result == -1L&& errno == EINTR);\ + __result;})\ #define TEMP_FAILURE_RETRY MUSL_TEMP_FAILURE_RETRY #endif