summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/lockf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/lockf.c')
-rw-r--r--lib/libc/gen/lockf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/lockf.c b/lib/libc/gen/lockf.c
index 4d6874b..15b5b21 100644
--- a/lib/libc/gen/lockf.c
+++ b/lib/libc/gen/lockf.c
@@ -75,7 +75,7 @@ lockf(filedes, function, size)
break;
case F_TEST:
fl.l_type = F_WRLCK;
- if (_libc_fcntl(filedes, F_GETLK, &fl) == -1)
+ if (_fcntl(filedes, F_GETLK, &fl) == -1)
return (-1);
if (fl.l_type == F_UNLCK || fl.l_pid == getpid())
return (0);
@@ -88,5 +88,5 @@ lockf(filedes, function, size)
/* NOTREACHED */
}
- return (_libc_fcntl(filedes, cmd, &fl));
+ return (_fcntl(filedes, cmd, &fl));
}
OpenPOWER on IntegriCloud