1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

Merge pull request #107 from sgerwk/master

do not exit if SIGCHLD interrupts a read
This commit is contained in:
rkd77 2021-03-18 18:50:23 +01:00 committed by GitHub
commit b6cf921bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -919,7 +919,7 @@
#endif #endif
/* Enable GNU extensions on systems that have them. */ /* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE #ifndef _GNU_SOURCE
# undef _GNU_SOURCE # define _GNU_SOURCE
#endif #endif
/* Enable threading extensions on Solaris. */ /* Enable threading extensions on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS #ifndef _POSIX_PTHREAD_SEMANTICS

View File

@ -26,6 +26,9 @@ static inline int dir_sep(char x) { return x == '/'; }
#include <pwd.h> #include <pwd.h>
#include <grp.h> #include <grp.h>
#include <unistd.h>
#include <errno.h>
#endif #endif
#endif #endif