summaryrefslogtreecommitdiff
path: root/ace/OS_NS_strings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_NS_strings.cpp')
-rw-r--r--ace/OS_NS_strings.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/ace/OS_NS_strings.cpp b/ace/OS_NS_strings.cpp
index 67ca3a809b8..50c5630c9d2 100644
--- a/ace/OS_NS_strings.cpp
+++ b/ace/OS_NS_strings.cpp
@@ -1,4 +1,3 @@
-// -*- C++ -*-
// $Id$
#include "ace/OS_NS_strings.h"
@@ -13,6 +12,8 @@ ACE_RCSID(ace, OS_NS_strings, "$Id$")
# include "ace/OS_NS_ctype.h"
#endif /* ACE_LACKS_STRCASECMP */
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
#if defined (ACE_LACKS_STRCASECMP)
int
ACE_OS::strcasecmp_emulation (const char *s, const char *t)
@@ -79,3 +80,5 @@ ACE_OS::strncasecmp_emulation (const char *s,
return ACE_OS::ace_tolower (*scan1) - ACE_OS::ace_tolower (*scan2);
}
#endif /* ACE_LACKS_STRCASECMP */
+
+ACE_END_VERSIONED_NAMESPACE_DECL