annotate lib/inttostr.c @ 17409:26a04e61f560

stdio: use __REDIRECT for fwrite, fwrite_unlocked * lib/stdio.in.h (fwrite): When working around bug 11959, use __REDIRECT rather than '#define fwrite(...) ... fwrite (...) ...'. This is a more-targeted way to fix the -Wunused-value issue with clang, and it works with GCC too. Problem with targeting reported by Eric Blake in <http://lists.gnu.org/archive/html/bug-gnulib/2013-05/msg00067.html>. (fwrite_unlocked): Treat like fwrite. I ran into this issue while debugging the fwrite issue.
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 15 May 2013 15:52:42 -0700
parents d5c7df915328
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13400
4a25c1663687 inttostr: add a new function, inttostr, and tests
Jim Meyering <meyering@redhat.com>
parents: 12997
diff changeset
1 #define anytostr inttostr
4a25c1663687 inttostr: add a new function, inttostr, and tests
Jim Meyering <meyering@redhat.com>
parents: 12997
diff changeset
2 #define inttype int
4a25c1663687 inttostr: add a new function, inttostr, and tests
Jim Meyering <meyering@redhat.com>
parents: 12997
diff changeset
3 #include "anytostr.c"