From: drepper Date: Fri, 29 Jan 1999 08:53:20 +0000 (+0000) Subject: (__ctype_get_mb_cur_max): Correct return type to size_t. X-Git-Tag: glibc-2_0_112~34 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=23b0e64a19057fca83fda0fa23cae8f1857ce321;hp=319408e57524fa4f96f0f1e09dc15615fb77499d (__ctype_get_mb_cur_max): Correct return type to size_t. --- diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 355c649652..3b9539e329 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -73,7 +73,7 @@ __extension__ typedef struct /* Maximum length of a multibyte character in the current locale. */ #define MB_CUR_MAX (__ctype_get_mb_cur_max ()) -extern int __ctype_get_mb_cur_max __P ((void)); +extern size_t __ctype_get_mb_cur_max __P ((void)); /* Convert a string to a floating-point number. */