1 // RUN: %clangxx -O0 %s -o %t && %run %t
2 // UNSUPPORTED: android
10 int main(int argc
, char **argv
) {
12 struct file_handle
*handle
= reinterpret_cast<struct file_handle
*>(
13 malloc(sizeof(*handle
) + MAX_HANDLE_SZ
));
15 handle
->handle_bytes
= MAX_HANDLE_SZ
;
16 int res
= name_to_handle_at(AT_FDCWD
, "/dev/null", handle
, &mount_id
, 0);