1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-26 01:15:37 +00: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
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
# define _GNU_SOURCE
#endif
/* Enable threading extensions on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS

View File

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