diff options
author | Florin Coras <fcoras@cisco.com> | 2020-05-26 19:45:45 +0000 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2020-05-26 20:35:19 +0000 |
commit | 0ab36f55753d3d1417c41f8a3aec5e79a882555c (patch) | |
tree | 327e838ca68bba6e289d086a66d2f893bbab629e /src/vcl/ldp_socket_wrapper.h | |
parent | 1bf6df4ff9c83bac1fc329a4b5c4d7061f13720a (diff) |
vcl: fix ldp fcntl64
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I342d8f928fcc7de74f9bd288c1a5d63ea1f90020
Diffstat (limited to 'src/vcl/ldp_socket_wrapper.h')
-rw-r--r-- | src/vcl/ldp_socket_wrapper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vcl/ldp_socket_wrapper.h b/src/vcl/ldp_socket_wrapper.h index 94529e3b744..0d167cf1aeb 100644 --- a/src/vcl/ldp_socket_wrapper.h +++ b/src/vcl/ldp_socket_wrapper.h @@ -122,7 +122,9 @@ int libc_eventfd (int count, int flags); int libc_vfcntl (int fd, int cmd, va_list ap); +#ifdef HAVE_FCNTL64 int libc_vfcntl64 (int fd, int cmd, va_list ap); +#endif int libc_vioctl (int fd, int cmd, va_list ap); |