summaryrefslogtreecommitdiff
path: root/ace/OS_NS_fcntl.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_NS_fcntl.inl')
-rw-r--r--ace/OS_NS_fcntl.inl23
1 files changed, 0 insertions, 23 deletions
diff --git a/ace/OS_NS_fcntl.inl b/ace/OS_NS_fcntl.inl
deleted file mode 100644
index 6714b0fe389..00000000000
--- a/ace/OS_NS_fcntl.inl
+++ /dev/null
@@ -1,23 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-#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