summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common/readv.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-12-23 13:02:13 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-12-23 13:02:13 +0000
commitdca7671f9895c247441a0eeb2b0977cac5f73129 (patch)
tree0f84cd561e58b4bb433d9c4667bfe0a0c0dcbe15 /libc/sysdeps/linux/common/readv.c
parent30a1f00740ebc5c82d7a10470fdf95249cf77bc5 (diff)
downloaduClibc-alpine-dca7671f9895c247441a0eeb2b0977cac5f73129.tar.bz2
uClibc-alpine-dca7671f9895c247441a0eeb2b0977cac5f73129.tar.xz
- _syscall?() need to superfluous trailing ';'
- reduce patch noise a little bit
Diffstat (limited to 'libc/sysdeps/linux/common/readv.c')
-rw-r--r--libc/sysdeps/linux/common/readv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/readv.c b/libc/sysdeps/linux/common/readv.c
index 20c87084d..fce396d5f 100644
--- a/libc/sysdeps/linux/common/readv.c
+++ b/libc/sysdeps/linux/common/readv.c
@@ -46,5 +46,5 @@ ssize_t readv (int fd, const struct iovec *vector, int count)
}
#else
_syscall3(ssize_t, readv, int, filedes, const struct iovec *, vector,
- int, count);
+ int, count)
#endif