summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.h
diff options
context:
space:
mode:
authorsma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-10-14 09:29:47 +0000
committersma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-10-14 09:29:47 +0000
commit898d43a63bc746eb033587afce46d48d91856181 (patch)
tree0f1fd49f56a3eb9bb6bd92841d8ae97c9d915040 /ACE/ace/OS_NS_stdlib.h
parent6c7528f3db1f5b40e441b7ca17d00310cbb9d239 (diff)
downloadATCD-898d43a63bc746eb033587afce46d48d91856181.tar.gz
ChangeLogTag: Tue Oct 14 09:30:00 UTC 2008 Simon Massey <sma at prismtech dot com>
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.h')
-rw-r--r--ACE/ace/OS_NS_stdlib.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ACE/ace/OS_NS_stdlib.h b/ACE/ace/OS_NS_stdlib.h
index e61dd8deff2..86df316bb97 100644
--- a/ACE/ace/OS_NS_stdlib.h
+++ b/ACE/ace/OS_NS_stdlib.h
@@ -255,7 +255,7 @@ namespace ACE_OS {
/// Converts a string to a long value (wchar_t version).
ACE_NAMESPACE_INLINE_FUNCTION
long strtol (const wchar_t *s, wchar_t **ptr, int base);
-
+
#if defined (ACE_LACKS_WCSTOL)
extern ACE_Export
long wcstol_emulation (const wchar_t *nptr, wchar_t **endptr, int base);
@@ -278,7 +278,7 @@ namespace ACE_OS {
/// Converts a string to an unsigned long value (wchar_t version).
ACE_NAMESPACE_INLINE_FUNCTION
unsigned long strtoul (const wchar_t *s, wchar_t **ptr, int base);
-
+
#if defined (ACE_LACKS_WCSTOUL)
extern ACE_Export
unsigned long wcstoul_emulation (const wchar_t *nptr,
@@ -295,20 +295,20 @@ namespace ACE_OS {
#if defined (ACE_LACKS_STRTOLL)
extern ACE_Export
ACE_INT64 strtoll_emulation (const char *nptr,
- char **endptr,
- int base);
+ char **endptr,
+ int base);
#endif /* ACE_LACKS_STRTOLL */
#if defined (ACE_HAS_WCHAR)
/// Converts a string to a signed 64 bit int value (wchar_t version).
ACE_NAMESPACE_INLINE_FUNCTION
ACE_INT64 strtoll (const wchar_t *s, wchar_t **ptr, int base);
-
+
#if defined (ACE_LACKS_WCSTOLL)
extern ACE_Export
ACE_INT64 wcstoll_emulation (const wchar_t *nptr,
- wchar_t **endptr,
- int base);
+ wchar_t **endptr,
+ int base);
#endif /* ACE_LACKS_WCSTOLL */
#endif /* ACE_HAS_WCHAR */
@@ -328,12 +328,12 @@ namespace ACE_OS {
/// Converts a string to a unsigned 64 bit int value (wchar_t version).
ACE_NAMESPACE_INLINE_FUNCTION
ACE_UINT64 strtoull (const wchar_t *s, wchar_t **ptr, int base);
-
+
#if defined (ACE_LACKS_WCSTOULL)
extern ACE_Export
ACE_UINT64 wcstoull_emulation (const wchar_t *nptr,
- wchar_t **endptr,
- int base);
+ wchar_t **endptr,
+ int base);
#endif /* ACE_LACKS_WCSTOULL */
#endif /* ACE_HAS_WCHAR */