diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-13 09:10:29 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-13 09:10:29 +0000 |
commit | 8b3894793ef89b57dc1282255aa1886179db5f0e (patch) | |
tree | c883e1e94b41487d09e2303abd431282cbf136a9 /ace/OS_String.cpp | |
parent | 4cd467c0f70fe2b7f9e79aaae47e591069836da0 (diff) | |
download | ATCD-8b3894793ef89b57dc1282255aa1886179db5f0e.tar.gz |
ChangeLogTag:Mon Nov 13 01:07:36 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/OS_String.cpp')
-rw-r--r-- | ace/OS_String.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ace/OS_String.cpp b/ace/OS_String.cpp index 0e70a4201c4..c37ce1285bc 100644 --- a/ace/OS_String.cpp +++ b/ace/OS_String.cpp @@ -96,6 +96,8 @@ ACE_OS_String::strdup (const wchar_t *s) return 0; return ACE_OS_String::strcpy (buffer, s); +# elif defined (ACE_WCSDUP_EQUIVALENT) + return ACE_WCSDUP_EQUIVALENT (s); # else /* ACE_LACKS_WCSDUP */ return ::wcsdup (s); # endif /* ACE_LACKS_WCSDUP */ |