Including sys/select.h where needed. Changed wait3() to waitpid() for better portability. Thanks Jonas Sortie Termansen.

This commit is contained in:
2025-04-08 23:12:15 +02:00
parent 0b4c879509
commit 23ce0176b8
5 changed files with 16 additions and 10 deletions

View File

@ -1,7 +1,7 @@
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2024 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007-2025 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2 or later.
@ -23,6 +23,9 @@
#include <time.h>
#include <sys/utsname.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include "sfile.h"
#include "misc_funct.h"