diff options
author | Andy Wingo <wingo@pobox.com> | 2013-02-18 18:48:48 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-02-18 18:48:48 +0100 |
commit | af07e10429c1513c2348289888b240926264b32b (patch) | |
tree | a05b78ee58618c46efa4c03da362dad3c2d8eb2b /lib/vasnprintf.c | |
parent | 739941679c2c7dc36c29c30aff7d4c1b436ba773 (diff) | |
download | guile-af07e10429c1513c2348289888b240926264b32b.tar.gz |
Update to gnulib 0.0.7865-a828.
Diffstat (limited to 'lib/vasnprintf.c')
-rw-r--r-- | lib/vasnprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vasnprintf.c b/lib/vasnprintf.c index 1da25f5f1..2e6bc8023 100644 --- a/lib/vasnprintf.c +++ b/lib/vasnprintf.c @@ -1,5 +1,5 @@ /* vsprintf with automatic memory allocation. - Copyright (C) 1999, 2002-2012 Free Software Foundation, Inc. + Copyright (C) 1999, 2002-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -1530,7 +1530,7 @@ is_borderline (const char *digits, size_t precision) /* Returns the number of TCHAR_T units needed as temporary space for the result of sprintf or SNPRINTF of a single conversion directive. */ -static inline size_t +static size_t MAX_ROOM_NEEDED (const arguments *ap, size_t arg_index, FCHAR_T conversion, arg_type type, int flags, size_t width, int has_precision, size_t precision, int pad_ourselves) |