mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 11:43:34 +08:00
hurd: Fix tst-writev test
There is no compile-time IOV_MAX constraint on GNU/Hurd
This commit is contained in:
parent
6d4f183495
commit
14f16bd482
@ -24,6 +24,11 @@
|
||||
#include <unistd.h>
|
||||
#include <sys/uio.h>
|
||||
|
||||
/* GNU/Hurd does not define a IOV_MAX constraint. */
|
||||
#ifndef IOV_MAX
|
||||
# define IOV_MAX 1024
|
||||
#endif
|
||||
|
||||
|
||||
/* The purpose of this test is to verify that the INTERNAL_[V]SYSCALL_NCS
|
||||
macros on 64-bit platforms don't cast the return type to (int) which would
|
||||
|
Loading…
Reference in New Issue
Block a user