7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-01-08 02:54:43 +00:00
kicad/thirdparty/sentry-native/external/libunwindstack-ndk/unistdfix.h
2022-04-02 01:21:55 +00:00

8 lines
263 B
C

#undef TEMP_FAILURE_RETRY
#define TEMP_FAILURE_RETRY(exp) ({ \
__typeof__(exp) _rc; \
do { \
_rc = (exp); \
} while (_rc == -1 && errno == EINTR); \
_rc; })