diff options
author | Ed Schouten <ed@FreeBSD.org> | 2016-07-28 09:50:19 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2016-07-28 09:50:19 +0000 |
commit | 822b22a9bf21c61d772133805ffc911bb6cb974e (patch) | |
tree | 2ebfd56bc89466282d3aa2f316dcf3f10706a64f /include/stdlib.h | |
parent | 2d19b736ed527c9d955a1b0adc59c30c9ad6b47b (diff) | |
download | src-822b22a9bf21c61d772133805ffc911bb6cb974e.tar.gz src-822b22a9bf21c61d772133805ffc911bb6cb974e.zip |
Notes
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 2 |
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; |