python-texttable: update to 1.3.1
[void-packages.git] / srcpkgs / flatpak / patches / musl-macros.patch
bloba810d49d334ba0952d9e281634cf5b4ff4772f4c
1 --- config.h.in.orig
2 +++ config.h.in
3 @@ -151,3 +151,12 @@
5 /* Define to 1 if you need to in order for `stat' and other things to work. */
6 #undef _POSIX_SOURCE
8 +#ifndef TEMP_FAILURE_RETRY
9 +#define TEMP_FAILURE_RETRY(expression) \
10 + (__extension__ \
11 + ({ long int __result; \
12 + do __result = (long int) (expression); \
13 + while (__result == -1L && errno == EINTR); \
14 + __result; }))
15 +#endif