summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_string.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-09-28 11:38:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-09-28 11:38:59 +0000
commit99c513d228740018c656ade1c93302cc04351911 (patch)
tree6f1c230b12220ce80f60aae4ccd0783675777b18 /ACE/ace/OS_NS_string.inl
parent741ba3b3813e9f0efc150d8a730237fd0991516b (diff)
downloadATCD-99c513d228740018c656ade1c93302cc04351911.tar.gz
Tue Sep 28 11:34:05 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Asynch_Connector.cpp: * ace/Barrier.h: * ace/Barrier.cpp: * ace/Condition_Thread_Mutex.h: * ace/Condition_Thread_Mutex.inl: * ace/Containers_T.cpp: * ace/Functor.h: * ace/Functor.inl: * ace/IO_Cntl_Msg.cpp: * ace/Intrusive_List.cpp: * ace/Local_Tokens.inl: * ace/MEM_IO.cpp: * ace/MEM_Stream.h: * ace/MEM_Stream.inl: * ace/Malloc_T.inl: * ace/OS_NS_Thread.inl: * ace/OS_NS_string.inl: * ace/Object_Manager_Base.cpp: * ace/POSIX_Proactor.cpp: * ace/Ping_Socket.cpp: * ace/Signal.inl: * ace/Throughput_Stats.h: * ace/Throughput_Stats.cpp: * ace/Time_Value.cpp: * ace/Timer_Hash_T.cpp: * ace/Timer_Heap_T.cpp: * ace/Vector_T.h: * ace/Vector_T.cpp: * ace/config-linux-common.h: Removed code that was ifdefed out for years now
Diffstat (limited to 'ACE/ace/OS_NS_string.inl')
-rw-r--r--ACE/ace/OS_NS_string.inl5
1 files changed, 0 insertions, 5 deletions
diff --git a/ACE/ace/OS_NS_string.inl b/ACE/ace/OS_NS_string.inl
index 4c57bfc0da3..f909b92a0b0 100644
--- a/ACE/ace/OS_NS_string.inl
+++ b/ACE/ace/OS_NS_string.inl
@@ -259,12 +259,7 @@ ACE_OS::strlen (const ACE_WCHAR_T *s)
ACE_INLINE char *
ACE_OS::strncat (char *s, const char *t, size_t len)
{
-#if 0 /* defined (ACE_HAS_TR24731_2005_CRT) */
- strncat_s (s, len + 1, t, _TRUNCATE);
- return s;
-#else
return ::strncat (s, t, len);
-#endif /* ACE_HAS_TR24731_2005_CRT */
}
ACE_INLINE ACE_WCHAR_T *