diff options
author | 2010-12-22 14:54:44 +0000 | |
---|---|---|
committer | 2010-12-22 14:54:44 +0000 | |
commit | 5f9828ad434eb968da5d35a996fd7977d0afadfe (patch) | |
tree | 8fccd223c1a3ca35a0407c5d5211e32f1e28f31e /lib/libc | |
parent | simplify some more: if it's not installed, ask the ports tree, who knows, (diff) | |
download | wireguard-openbsd-5f9828ad434eb968da5d35a996fd7977d0afadfe.tar.xz wireguard-openbsd-5f9828ad434eb968da5d35a996fd7977d0afadfe.zip |
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 */ |