X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Finttostr.h;h=1825f56478ed8c55183d432f19c5103ba4d4414d;hb=9ce1d1748f8d7d27b41f7026ee137eb5eed7c224;hp=a103caf587f1a4966888bc6aed4a983d34b4b194;hpb=493e1981bcdc746dbcd622a17ac65acdedf5762e;p=gnulib.git diff --git a/lib/inttostr.h b/lib/inttostr.h index a103caf58..1825f5647 100644 --- a/lib/inttostr.h +++ b/lib/inttostr.h @@ -1,7 +1,6 @@ /* inttostr.h -- convert integers to printable strings - Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software - Foundation, Inc. + Copyright (C) 2001-2006, 2009-2011 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 @@ -40,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__;