summaryrefslogtreecommitdiff
path: root/ace/OS_NS_dlfcn.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_NS_dlfcn.inl')
-rw-r--r--ace/OS_NS_dlfcn.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/OS_NS_dlfcn.inl b/ace/OS_NS_dlfcn.inl
index 83291148f8a..1249f7b612f 100644
--- a/ace/OS_NS_dlfcn.inl
+++ b/ace/OS_NS_dlfcn.inl
@@ -2,7 +2,7 @@
// $Id$
#include "ace/OS_NS_macros.h"
-
+#include "ace/OS_NS_errno.h"
ACE_INLINE int
ACE_OS::dlclose (ACE_SHLIB_HANDLE handle)
@@ -66,7 +66,7 @@ ACE_OS::dlerror (void)
ACE_OSCALL_RETURN ((char *)::dlerror (), char *, 0);
#endif /* _M_UNIX */
# elif defined (__hpux) || defined (VXWORKS)
- ACE_OSCALL_RETURN (::strerror(errno), char *, 0);
+ ACE_OSCALL_RETURN (ACE_OS::strerror(errno), char *, 0);
# elif defined (ACE_WIN32)
static ACE_TCHAR buf[128];
# if defined (ACE_HAS_PHARLAP)