diff options
Diffstat (limited to 'libs')
-rw-r--r-- | libs/nixio/src/splice.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/nixio/src/splice.c b/libs/nixio/src/splice.c index db215efb1..0704dfd24 100644 --- a/libs/nixio/src/splice.c +++ b/libs/nixio/src/splice.c @@ -59,6 +59,15 @@ ssize_t splice(int __fdin, __off64_t *__offin, int __fdout, return -1; #endif } + +#undef SPLICE_F_MOVE +#undef SPLICE_F_NONBLOCK +#undef SPLICE_F_MORE + +#define SPLICE_F_MOVE 1 +#define SPLICE_F_NONBLOCK 2 +#define SPLICE_F_MORE 4 + #endif /* __UCLIBC__ */ /** |