aboutsummaryrefslogtreecommitdiff
path: root/include/xatonum.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xatonum.h')
-rw-r--r--include/xatonum.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xatonum.h b/include/xatonum.h
index 864d2a383..978c502f6 100644
--- a/include/xatonum.h
+++ b/include/xatonum.h
@@ -101,7 +101,7 @@ DECLARE_STR_CONV(int, i, u)
101 101
102/* Specialized */ 102/* Specialized */
103 103
104int BUG_xatou32_unimplemented(void); 104uint32_t BUG_xatou32_unimplemented(void);
105static ALWAYS_INLINE uint32_t xatou32(const char *numstr) 105static ALWAYS_INLINE uint32_t xatou32(const char *numstr)
106{ 106{
107 if (UINT_MAX == 0xffffffff) 107 if (UINT_MAX == 0xffffffff)
@@ -158,7 +158,7 @@ unsigned bb_strtou(const char *arg, char **endp, int base) FAST_FUNC;
158int bb_strtoi(const char *arg, char **endp, int base) FAST_FUNC; 158int bb_strtoi(const char *arg, char **endp, int base) FAST_FUNC;
159#endif 159#endif
160 160
161int BUG_bb_strtou32_unimplemented(void); 161uint32_t BUG_bb_strtou32_unimplemented(void);
162static ALWAYS_INLINE 162static ALWAYS_INLINE
163uint32_t bb_strtou32(const char *arg, char **endp, int base) 163uint32_t bb_strtou32(const char *arg, char **endp, int base)
164{ 164{