diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-07 04:47:54 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-07 04:47:54 +0000 |
commit | 9845da4c74f1c38b652bc824842640c3c2d76629 (patch) | |
tree | a3b203e85564fc2c0222a661cc2e7da7b4b9421a /ace/OS_String.inl | |
parent | 55cdc852d4313ddcac98f81dfb226caa76720d0b (diff) | |
download | ATCD-9845da4c74f1c38b652bc824842640c3c2d76629.tar.gz |
ChangeLogTag:Sun Aug 6 21:40:42 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/OS_String.inl')
-rw-r--r-- | ace/OS_String.inl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/OS_String.inl b/ace/OS_String.inl index a885f874023..d81ae33e17f 100644 --- a/ace/OS_String.inl +++ b/ace/OS_String.inl @@ -530,7 +530,13 @@ ACE_OS_String::strtok (char *s, const char *tokens) ACE_INLINE wchar_t * ACE_OS_String::strtok (wchar_t *s, const wchar_t *tokens) { +# if defined (ACE_HAS_SAFE_WCSTOK) + ACE_UNUSED_ARG(s); + ACE_UNUSED_ARG(tokens); + ACE_NOTSUP_RETURN (0); +# else return ::wcstok (s, tokens); +# endif /* ACE_HAS_SAFE_WCSTOK */ } #endif /* ACE_HAS_WCHAR */ |