diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 00:26:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 00:26:08 +0000 |
commit | 593b6a09b2613732c0008f09902f5e903497f73d (patch) | |
tree | 6606581d46640aa1dcd4dbf626b1f7d9a2a86b80 /lib | |
parent | 5583c8b3dcd02308bd12aca8d8cf176ba7040c9d (diff) |
ansi and ARSUSED
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/db/hash/ndbm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/db/hash/ndbm.c b/lib/libc/db/hash/ndbm.c index c6ed005b53b..0acb4444001 100644 --- a/lib/libc/db/hash/ndbm.c +++ b/lib/libc/db/hash/ndbm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ndbm.c,v 1.19 2004/06/21 23:13:22 marc Exp $ */ +/* $OpenBSD: ndbm.c,v 1.20 2004/09/15 00:26:07 deraadt Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -36,7 +36,7 @@ #if 0 static char sccsid[] = "@(#)dbm.c 8.6 (Berkeley) 11/7/95"; #else -static const char rcsid[] = "$OpenBSD: ndbm.c,v 1.19 2004/06/21 23:13:22 marc Exp $"; +static const char rcsid[] = "$OpenBSD: ndbm.c,v 1.20 2004/09/15 00:26:07 deraadt Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -139,9 +139,9 @@ firstkey() * DATUM on success * NULL on failure */ +/* ARGSUSED */ datum -nextkey(key) - datum key; +nextkey(datum key) { datum item; |