1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: add #include <sys/types.h> to debugger_darwin.c.v, to fix bootstrapping on macOS <= 11 (#17446)

This commit is contained in:
Haren S 2023-02-28 22:06:12 +00:00 committed by GitHub
parent 0625caad56
commit acfd21e4e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
module os
#include <sys/types.h>
#include <sys/ptrace.h>
fn C.ptrace(int, u32, voidptr, int) int