X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Finttostr.h;h=4605145ab1be84048d8c9aef67a91c3775a5b9e9;hb=43593319b31e6b0175b8eec4433bac744959822d;hp=c2e7257758001eb8deb3cc07ef84bfbdada949ea;hpb=3030c5b5e0a5199e16b05927da72c43c42f211c3;p=gnulib.git diff --git a/lib/inttostr.h b/lib/inttostr.h index c2e725775..4605145ab 100644 --- a/lib/inttostr.h +++ b/lib/inttostr.h @@ -1,6 +1,6 @@ /* inttostr.h -- convert integers to printable strings - Copyright (C) 2001-2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2001-2006, 2009-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -39,7 +39,8 @@ # define __attribute_warn_unused_result__ /* empty */ #endif -char *offtostr (off_t, char *) __attribute_warn_unused_result__; char *imaxtostr (intmax_t, char *) __attribute_warn_unused_result__; -char *umaxtostr (uintmax_t, char *) __attribute_warn_unused_result__; +char *inttostr (int, char *) __attribute_warn_unused_result__; +char *offtostr (off_t, char *) __attribute_warn_unused_result__; char *uinttostr (unsigned int, char *) __attribute_warn_unused_result__; +char *umaxtostr (uintmax_t, char *) __attribute_warn_unused_result__;