3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-23 16:04:37 +00:00

Merge pull request #5438 from cr1901/posix-bugpoint

Add sys/wait.h header to bugpoint to bring in constants.
This commit is contained in:
Miodrag Milanović 2025-10-22 12:40:26 +02:00 committed by GitHub
commit 2613c1c0a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,6 +28,8 @@
# define WEXITSTATUS(x) ((x) & 0xff)
# define WTERMSIG(x) SIGTERM
# define WSTOPSIG(x) 0
#else
#include <sys/wait.h>
#endif
USING_YOSYS_NAMESPACE