Change for macos clang

This commit is contained in:
Jeremy 2024-05-23 20:39:14 -05:00
parent 2369aeb0b4
commit 2f24397273
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -61,12 +61,14 @@ namespace addr2line {
return has_addr2line;
}
struct pipe_ends {
int read;
int write;
};
struct pipe_t {
union {
struct {
int read;
int write;
} end;
pipe_ends end;
int data[2];
};
};