Re: svn commit: r292004 - head/lib/libc/stdio

2015-12-09 Thread Garrett Cooper
> On Dec 8, 2015, at 23:23, Bruce Evans wrote: > >> On Tue, 8 Dec 2015, Garrett Cooper wrote: >> >> Author: ngie >> ... >> >> Log: >> Fix compilation when -DDEBUG is defined by adding inttypes.h #include >> for intmax_t > > Wrong include. intmax_t is declared in .

svn commit: r292004 - head/lib/libc/stdio

2015-12-08 Thread Garrett Cooper
Author: ngie Date: Tue Dec 8 22:47:54 2015 New Revision: 292004 URL: https://svnweb.freebsd.org/changeset/base/292004 Log: Fix compilation when -DDEBUG is defined by adding inttypes.h #include for intmax_t MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D4434

Re: svn commit: r292004 - head/lib/libc/stdio

2015-12-08 Thread Bruce Evans
On Tue, 8 Dec 2015, Garrett Cooper wrote: Author: ngie ... Log: Fix compilation when -DDEBUG is defined by adding inttypes.h #include for intmax_t Wrong include. intmax_t is declared in . declares much more and is usually only needed for functions like strtoimax(). also declares PRI*