summaryrefslogtreecommitdiff
path: root/lib/fcntl.c
diff options
context:
space:
mode:
authorKO Myung-Hun <komh78@gmail.com>2019-01-17 19:32:20 +0100
committerBruno Haible <bruno@clisp.org>2019-01-17 19:32:20 +0100
commit2541624fd8fd7bd27de55936ba94589e42ab6a84 (patch)
treec442be5b70e0aa8c2a3d2ffb7c0bac0cceb0c88e /lib/fcntl.c
parent34290cb926e655971d17d35b8fd238ebe1b57da9 (diff)
downloadgnulib-2541624fd8fd7bd27de55936ba94589e42ab6a84.tar.gz
fcntl: Fix syntax error (regression from 2018-10-05).
* lib/fcntl.c (klibc_fcntl): Remove mis-placed ';'.
Diffstat (limited to 'lib/fcntl.c')
-rw-r--r--lib/fcntl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fcntl.c b/lib/fcntl.c
index f602fad628..51f62ef78a 100644
--- a/lib/fcntl.c
+++ b/lib/fcntl.c
@@ -545,7 +545,7 @@ rpl_fcntl_DUPFD_CLOEXEC (int fd, int target)
#ifdef __KLIBC__
static int
-klibc_fcntl (int fd, int action, /* arg */...);
+klibc_fcntl (int fd, int action, /* arg */...)
{
va_list arg_ptr;
int arg;