diff options
| author | kleink <kleink@NetBSD.org> | 2000-08-10 10:03:43 +0000 |
|---|---|---|
| committer | kleink <kleink@NetBSD.org> | 2000-08-10 10:03:43 +0000 |
| commit | bc3eaa0a03fa910592a46536cce448c0c91b7c77 (patch) | |
| tree | c92f26a3dd94817e01048e9b8bf2724c6d6b9bb7 /include/stdlib.h | |
| parent | e12dc928086a3ea24fcab50f3b72d3352347b1a1 (diff) | |
ISO/IEC 9899:1999: MB_CUR_MAX expands to a positive integer expression with
type size_t (not int).
(Incompatible ABI change, ignored due to a window of just two days.)
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index c88805c04a9..627547b633a 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdlib.h,v 1.46 2000/08/08 22:31:14 tshiozak Exp $ */ +/* $NetBSD: stdlib.h,v 1.47 2000/08/10 10:03:43 kleink Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -95,7 +95,7 @@ typedef struct { #define RAND_MAX 0x7fffffff -extern int __mb_cur_max; +extern size_t __mb_cur_max; #define MB_CUR_MAX __mb_cur_max __BEGIN_DECLS |
