1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 12:23:53 +00:00

Merge pull request #973 from 0-wiz-0/master

Use correct header on NetBSD.
This commit is contained in:
Bartosz Taudul 2025-01-20 14:13:17 +01:00 committed by GitHub
commit f583d1c855
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,9 @@
# include <fcntl.h> # include <fcntl.h>
#elif defined __FreeBSD__ #elif defined __FreeBSD__
# include <sys/thr.h> # include <sys/thr.h>
#elif defined __NetBSD__ || defined __DragonFly__ #elif defined __NetBSD__
# include <lwp.h>
#elif defined __DragonFly__
# include <sys/lwp.h> # include <sys/lwp.h>
#elif defined __QNX__ #elif defined __QNX__
# include <process.h> # include <process.h>