diff options
-rw-r--r-- | ace/OS_String.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/OS_String.h b/ace/OS_String.h index 2dfd15402da..9c71264bf1a 100644 --- a/ace/OS_String.h +++ b/ace/OS_String.h @@ -127,11 +127,11 @@ public: #endif /* ACE_HAS_WCHAR */ static long strtol (const char *s, char **ptr, int base); - static u_long strtoul (const char *s, char **ptr, int base); + static unsigned long strtoul (const char *s, char **ptr, int base); static double strtod (const char *s, char **endptr); #if defined (ACE_HAS_WCHAR) static long strtol (const wchar_t *s, wchar_t **ptr, int base); - static u_long strtoul (const wchar_t *s, wchar_t **ptr, int base); + static unsigned long strtoul (const wchar_t *s, wchar_t **ptr, int base); static double strtod (const wchar_t *s, wchar_t **endptr); #endif /* ACE_HAS_WCHAR */ |