tech-pkg archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: gettext 0.16 vs 0.14.6



On Fri, Jul 18, 2008 at 01:59:57PM +0200, Joerg Sonnenberger wrote:
 > Also keep in mind that the support for printf argument reordering is
 > missing in base and therefore creates a lot of issues.

?

   % cat foo.c
   #include <stdio.h>
   int main() {
      printf("%3$d %2$d %1$d\n", 2, 4, 6);
      return 0;
   }
   % gcc foo.c -o foo
   % ./foo
   6 4 2
   % 

-- 
David A. Holland
dholland%netbsd.org@localhost


Home | Main Index | Thread Index | Old Index