diff options
author | 2015-09-27 05:25:00 +0000 | |
---|---|---|
committer | 2015-09-27 05:25:00 +0000 | |
commit | 7637b2e319e5dd5a9b7683b74c34a238a500553a (patch) | |
tree | 016cd5fd68716ec7c8ab4222a8a35fa38c1b183f /lib/libcurses/base/vsscanf.c | |
parent | pull the m_freem calls out of hfsc_enqueue by having IFQ_ENQUEUE free (diff) | |
download | wireguard-openbsd-7637b2e319e5dd5a9b7683b74c34a238a500553a.tar.xz wireguard-openbsd-7637b2e319e5dd5a9b7683b74c34a238a500553a.zip |
lint is dead: delete the trivial uses of /* VARARGS[0-9]+ */
(others require more care)
Diffstat (limited to 'lib/libcurses/base/vsscanf.c')
-rw-r--r-- | lib/libcurses/base/vsscanf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libcurses/base/vsscanf.c b/lib/libcurses/base/vsscanf.c index 0a283e30c9c..de14ffa4252 100644 --- a/lib/libcurses/base/vsscanf.c +++ b/lib/libcurses/base/vsscanf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vsscanf.c,v 1.1 2010/01/12 23:22:06 nicm Exp $ */ +/* $OpenBSD: vsscanf.c,v 1.2 2015/09/27 05:25:00 guenther Exp $ */ /**************************************************************************** * Copyright (c) 1998-2003,2004 Free Software Foundation, Inc. * @@ -40,7 +40,7 @@ #if !HAVE_VSSCANF -MODULE_ID("$Id: vsscanf.c,v 1.1 2010/01/12 23:22:06 nicm Exp $") +MODULE_ID("$Id: vsscanf.c,v 1.2 2015/09/27 05:25:00 guenther Exp $") #if !(HAVE_VFSCANF || HAVE__DOSCAN) @@ -161,7 +161,6 @@ other_ch(int ch) } #endif -/*VARARGS2*/ NCURSES_EXPORT(int) vsscanf(const char *str, const char *format, va_list ap) { |