=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/printf/printf.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/printf/printf.c 2008/06/19 16:24:00 1.13 --- src/usr.bin/printf/printf.c 2008/09/08 17:04:20 1.14 *************** *** 1,4 **** ! /* $OpenBSD: printf.c,v 1.13 2008/06/19 16:24:00 millert Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: printf.c,v 1.14 2008/09/08 17:04:20 martynas Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. *************** *** 39,45 **** #ifndef lint /*static char sccsid[] = "from: @(#)printf.c 5.9 (Berkeley) 6/1/90";*/ ! static char rcsid[] = "$OpenBSD: printf.c,v 1.13 2008/06/19 16:24:00 millert Exp $"; #endif /* not lint */ #include --- 39,45 ---- #ifndef lint /*static char sccsid[] = "from: @(#)printf.c 5.9 (Berkeley) 6/1/90";*/ ! static char rcsid[] = "$OpenBSD: printf.c,v 1.14 2008/09/08 17:04:20 martynas Exp $"; #endif /* not lint */ #include *************** *** 218,226 **** --- 218,229 ---- PF(f, p); break; } + case 'a': + case 'A': case 'e': case 'E': case 'f': + case 'F': case 'g': case 'G': { double p = getdouble();