Skip to content

Commit 09c49a9

Browse files
committed
Ignore signedness check for uuid_t on DragonFly
1 parent aab4d11 commit 09c49a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc-test/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,13 @@ fn main() {
264264
}
265265
});
266266

267-
cfg.skip_signededness(|c| {
267+
cfg.skip_signededness(move |c| {
268268
match c {
269269
"LARGE_INTEGER" |
270270
"mach_timebase_info_data_t" |
271271
"float" |
272272
"double" => true,
273+
"uuid_t" if dragonfly => true,
273274
n if n.starts_with("pthread") => true,
274275

275276
// windows-isms

0 commit comments

Comments
 (0)