mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01: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
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue