summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.h
diff options
context:
space:
mode:
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 */