Add a rule for flock64 in libc-test build script

This commit is contained in:
Elichai Turkel 2019-11-20 14:54:57 +02:00
parent c70634e486
commit 66529ed375
No known key found for this signature in database
GPG Key ID: 9383CDE9E8E66A7F
1 changed files with 3 additions and 0 deletions

View File

@ -2230,6 +2230,9 @@ fn test_linux(target: &str) {
t if t.ends_with("_t") => t.to_string(),
// This is either a struct or a typedef to a struct
"flock64" if musl => format!("struct {}", ty),
// put `struct` in front of all structs:.
t if is_struct => format!("struct {}", t),