aboutsummaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2016-07-28 09:50:19 +0000
committerEd Schouten <ed@FreeBSD.org>2016-07-28 09:50:19 +0000
commit822b22a9bf21c61d772133805ffc911bb6cb974e (patch)
tree2ebfd56bc89466282d3aa2f316dcf3f10706a64f /include/stdlib.h
parent2d19b736ed527c9d955a1b0adc59c30c9ad6b47b (diff)
downloadsrc-822b22a9bf21c61d772133805ffc911bb6cb974e.tar.gz
src-822b22a9bf21c61d772133805ffc911bb6cb974e.zip
Notes
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index cc6941b02014..73bc6ee9a00a 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -77,7 +77,7 @@ __BEGIN_DECLS
#endif
extern int __mb_cur_max;
extern int ___mb_cur_max(void);
-#define MB_CUR_MAX (___mb_cur_max())
+#define MB_CUR_MAX ((size_t)___mb_cur_max())
_Noreturn void abort(void);
int abs(int) __pure2;