diff options
Diffstat (limited to 'externals/ace/OS_NS_fcntl.inl')
| -rw-r--r-- | externals/ace/OS_NS_fcntl.inl | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/externals/ace/OS_NS_fcntl.inl b/externals/ace/OS_NS_fcntl.inl deleted file mode 100644 index ddace065e7c..00000000000 --- a/externals/ace/OS_NS_fcntl.inl +++ /dev/null @@ -1,23 +0,0 @@ -// -*- C++ -*- -// -// $Id: OS_NS_fcntl.inl 80826 2008-03-04 14:51:23Z wotte $ - -#include "ace/OS_NS_errno.h" - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -ACE_INLINE int -ACE_OS::fcntl (ACE_HANDLE handle, int cmd, long arg) -{ - ACE_OS_TRACE ("ACE_OS::fcntl"); -# if defined (ACE_LACKS_FCNTL) - ACE_UNUSED_ARG (handle); - ACE_UNUSED_ARG (cmd); - ACE_UNUSED_ARG (arg); - ACE_NOTSUP_RETURN (-1); -# else - ACE_OSCALL_RETURN (::fcntl (handle, cmd, arg), int, -1); -# endif /* ACE_LACKS_FCNTL */ -} - -ACE_END_VERSIONED_NAMESPACE_DECL |
