diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-06 04:53:46 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-06 04:53:46 +0000 |
commit | 93f7df5a05a37270bf748c210e7b8c8a7d7c469e (patch) | |
tree | 57cbfb6a69586d0a199fc328af6780674a6d92f6 /ace/OS_String.h | |
parent | 5890aa45137f65ae7063a75df4248c4708665c13 (diff) | |
download | ATCD-93f7df5a05a37270bf748c210e7b8c8a7d7c469e.tar.gz |
ChangeLogTag:Sat Aug 5 21:49:12 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/OS_String.h')
-rw-r--r-- | ace/OS_String.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ace/OS_String.h b/ace/OS_String.h index e55ad295912..e5234da226d 100644 --- a/ace/OS_String.h +++ b/ace/OS_String.h @@ -171,7 +171,6 @@ private: static int strcasecmp_emulation (const char *s, const char *t); static int strncasecmp_emulation (const char *s, const char *t, size_t len); static char *strtok_r_emulation (char *s, const char *tokens, char **lasts); - static char *itoa_emulation (int value, char *string, int radix); #if defined (ACE_HAS_WCHAR) static wchar_t *strrchr_emulation (wchar_t *s, wint_t c); @@ -182,6 +181,15 @@ private: size_t len); static wchar_t *itoa_emulation (int value, wchar_t *string, int radix); #endif /* ACE_HAS_WCHAR */ + + +#if !defined (ACE_HAS_ITOA) + static char *itoa_emulation (int value, char *string, int radix); +# if defined (ACE_HAS_WCHAR) + static wchar_t *itoa_emulation (int value, wchar_t *string, int radix); +# endif /* ACE_HAS_WCHAR */ +#endif /* ACE_HAS_ITOA */ + }; # if defined (ACE_HAS_INLINED_OSCALLS) |