aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/fcntl.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/linux/guts/fcntl.c')
-rw-r--r--ports/linux/guts/fcntl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ports/linux/guts/fcntl.c b/ports/linux/guts/fcntl.c
index 4dd9796..434c7f3 100644
--- a/ports/linux/guts/fcntl.c
+++ b/ports/linux/guts/fcntl.c
@@ -52,6 +52,11 @@
case F_GETLK:
case F_SETLK:
case F_SETLKW:
+#ifdef F_OFD_GETLK
+ case F_OFD_GETLK:
+ case F_OFD_SETLK:
+ case F_OFD_SETLKW:
+#endif
rc = real_fcntl(fd, cmd, lock);
break;
#if defined(F_GETLK64) && (F_GETLK64 != F_GETLK)