diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2010-12-22 14:54:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2010-12-22 14:54:45 +0000 |
commit | 1086043333bba47230bf43c6cddaf0a78c1db8bf (patch) | |
tree | a7df3163ca5248141d4c2e5b712823a386eeb58b /lib/libc | |
parent | b32d0bf00919dffedb1ff11449732d05e628bc07 (diff) |
Fix out of date comment; no code change
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index cfacaa24c8d..2ea7c300d72 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.59 2010/10/17 20:26:51 guenther Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.60 2010/12/22 14:54:44 millert Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -176,7 +176,7 @@ static int exponent(char *, int, int); */ #define ALT 0x0001 /* alternate form */ #define LADJUST 0x0004 /* left adjustment */ -#define LONGDBL 0x0008 /* long double; unimplemented */ +#define LONGDBL 0x0008 /* long double */ #define LONGINT 0x0010 /* long integer */ #define LLONGINT 0x0020 /* long long integer */ #define SHORTINT 0x0040 /* short integer */ |