summaryrefslogtreecommitdiff
path: root/ace/OS_NS_strings.inl
diff options
context:
space:
mode:
authorjohn_c <john_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-05-08 23:00:05 +0000
committerjohn_c <john_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-05-08 23:00:05 +0000
commitd1160e68b1301a8b0e120ba8da56bb2e7d4fb49e (patch)
treecf04398acb7ad9fb45311eb105d60975028bbc03 /ace/OS_NS_strings.inl
parent1c3dd540264435be21072a3a69a8a8e969bd2b1a (diff)
downloadATCD-d1160e68b1301a8b0e120ba8da56bb2e7d4fb49e.tar.gz
Fri May 5 14:33:29 UTC 2006 Ciju John <john_c@ociweb.com>oci_wchar_refactor_post_1_5_1_branch
Diffstat (limited to 'ace/OS_NS_strings.inl')
-rw-r--r--ace/OS_NS_strings.inl6
1 files changed, 0 insertions, 6 deletions
diff --git a/ace/OS_NS_strings.inl b/ace/OS_NS_strings.inl
index 2b2012b2f38..4e5d0f40dc0 100644
--- a/ace/OS_NS_strings.inl
+++ b/ace/OS_NS_strings.inl
@@ -2,9 +2,7 @@
//
// $Id$
-#if defined (ACE_HAS_WCHAR)
# include "ace/OS_NS_wchar.h"
-#endif /* ACE_HAS_WCHAR */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
@@ -20,7 +18,6 @@ ACE_OS::strcasecmp (const char *s, const char *t)
#endif /* ACE_LACKS_STRCASECMP */
}
-#if defined (ACE_HAS_WCHAR)
ACE_INLINE int
ACE_OS::strcasecmp (const wchar_t *s, const wchar_t *t)
{
@@ -30,7 +27,6 @@ ACE_OS::strcasecmp (const wchar_t *s, const wchar_t *t)
return ::_wcsicmp (s, t);
# endif /* ACE_LACKS_WCSICMP */
}
-#endif /* ACE_HAS_WCHAR */
ACE_INLINE int
ACE_OS::strncasecmp (const char *s, const char *t, size_t len)
@@ -44,7 +40,6 @@ ACE_OS::strncasecmp (const char *s, const char *t, size_t len)
#endif /* ACE_LACKS_STRCASECMP */
}
-#if defined (ACE_HAS_WCHAR)
ACE_INLINE int
ACE_OS::strncasecmp (const wchar_t *s, const wchar_t *t, size_t len)
{
@@ -54,6 +49,5 @@ ACE_OS::strncasecmp (const wchar_t *s, const wchar_t *t, size_t len)
return ::_wcsnicmp (s, t, len);
#endif /* ACE_LACKS_WCSNICMP */
}
-#endif /* ACE_HAS_WCHAR */
ACE_END_VERSIONED_NAMESPACE_DECL