summaryrefslogtreecommitdiff
path: root/lib/libc/db
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2021-10-24 10:05:24 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2021-10-24 10:05:24 +0000
commitde177e4bd5f29ef277cce5784fef710933742753 (patch)
tree0c8074007b3e1b7f3997e86a6fadd42262157339 /lib/libc/db
parent2ba2772746af9de8240d0008e646447af64fd4ab (diff)
ansi
ok mpi@ deraadt@
Diffstat (limited to 'lib/libc/db')
-rw-r--r--lib/libc/db/btree/bt_close.c9
-rw-r--r--lib/libc/db/btree/bt_utils.c5
-rw-r--r--lib/libc/db/hash/ndbm.c47
3 files changed, 18 insertions, 43 deletions
diff --git a/lib/libc/db/btree/bt_close.c b/lib/libc/db/btree/bt_close.c
index 31cbec35fc8..745fd62e821 100644
--- a/lib/libc/db/btree/bt_close.c
+++ b/lib/libc/db/btree/bt_close.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bt_close.c,v 1.10 2015/01/16 16:48:51 deraadt Exp $ */
+/* $OpenBSD: bt_close.c,v 1.11 2021/10/24 10:05:22 jsg Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -107,9 +107,7 @@ __bt_close(DB *dbp)
* RET_SUCCESS, RET_ERROR.
*/
int
-__bt_sync(dbp, flags)
- const DB *dbp;
- u_int flags;
+__bt_sync(const DB *dbp, u_int flags)
{
BTREE *t;
int status;
@@ -150,8 +148,7 @@ __bt_sync(dbp, flags)
* RET_ERROR, RET_SUCCESS
*/
static int
-bt_meta(t)
- BTREE *t;
+bt_meta(BTREE *t)
{
BTMETA m;
void *p;
diff --git a/lib/libc/db/btree/bt_utils.c b/lib/libc/db/btree/bt_utils.c
index f442ff0ba4e..d3a66e663e7 100644
--- a/lib/libc/db/btree/bt_utils.c
+++ b/lib/libc/db/btree/bt_utils.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bt_utils.c,v 1.11 2015/01/16 16:48:51 deraadt Exp $ */
+/* $OpenBSD: bt_utils.c,v 1.12 2021/10/24 10:05:22 jsg Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -226,8 +226,7 @@ __bt_defcmp(const DBT *a, const DBT *b)
* Number of bytes needed to distinguish b from a.
*/
size_t
-__bt_defpfx(a, b)
- const DBT *a, *b;
+__bt_defpfx(const DBT *a, const DBT *b)
{
u_char *p1, *p2;
size_t cnt, len;
diff --git a/lib/libc/db/hash/ndbm.c b/lib/libc/db/hash/ndbm.c
index 01c521f14cc..cc54ccf928a 100644
--- a/lib/libc/db/hash/ndbm.c
+++ b/lib/libc/db/hash/ndbm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ndbm.c,v 1.26 2016/05/07 21:58:06 tedu Exp $ */
+/* $OpenBSD: ndbm.c,v 1.27 2021/10/24 10:05:22 jsg Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -57,11 +57,7 @@ static DBM *_dbm_open(const char *, const char *, int, mode_t);
* NULL on failure
*/
static DBM *
-_dbm_open(file, suff, flags, mode)
- const char *file;
- const char *suff;
- int flags;
- mode_t mode;
+_dbm_open(const char *file, const char *suff, int flags, mode_t mode)
{
HASHINFO info;
char path[PATH_MAX];
@@ -92,10 +88,7 @@ _dbm_open(file, suff, flags, mode)
* NULL on failure
*/
DBM *
-dbm_open(file, flags, mode)
- const char *file;
- int flags;
- mode_t mode;
+dbm_open(const char *file, int flags, mode_t mode)
{
return(_dbm_open(file, DBM_SUFFIX, flags, mode));
@@ -106,8 +99,7 @@ dbm_open(file, flags, mode)
* Nothing.
*/
void
-dbm_close(db)
- DBM *db;
+dbm_close(DBM *db)
{
(void)(db->close)(db);
@@ -120,9 +112,7 @@ DEF_WEAK(dbm_close);
* NULL on failure
*/
datum
-dbm_fetch(db, key)
- DBM *db;
- datum key;
+dbm_fetch(DBM *db, datum key)
{
datum retdata;
int status;
@@ -147,8 +137,7 @@ DEF_WEAK(dbm_fetch);
* NULL on failure
*/
datum
-dbm_firstkey(db)
- DBM *db;
+dbm_firstkey(DBM *db)
{
int status;
datum retkey;
@@ -169,8 +158,7 @@ DEF_WEAK(dbm_firstkey);
* NULL on failure
*/
datum
-dbm_nextkey(db)
- DBM *db;
+dbm_nextkey(DBM *db)
{
int status;
datum retkey;
@@ -191,9 +179,7 @@ DEF_WEAK(dbm_nextkey);
* <0 on failure
*/
int
-dbm_delete(db, key)
- DBM *db;
- datum key;
+dbm_delete(DBM *db, datum key)
{
int status;
DBT dbtkey;
@@ -215,10 +201,7 @@ DEF_WEAK(dbm_delete);
* 1 if DBM_INSERT and entry exists
*/
int
-dbm_store(db, key, data, flags)
- DBM *db;
- datum key, data;
- int flags;
+dbm_store(DBM *db, datum key, datum data, int flags)
{
DBT dbtkey, dbtdata;
@@ -232,8 +215,7 @@ dbm_store(db, key, data, flags)
DEF_WEAK(dbm_store);
int
-dbm_error(db)
- DBM *db;
+dbm_error(DBM *db)
{
HTAB *hp;
@@ -242,8 +224,7 @@ dbm_error(db)
}
int
-dbm_clearerr(db)
- DBM *db;
+dbm_clearerr(DBM *db)
{
HTAB *hp;
@@ -253,16 +234,14 @@ dbm_clearerr(db)
}
int
-dbm_dirfno(db)
- DBM *db;
+dbm_dirfno(DBM *db)
{
return(((HTAB *)db->internal)->fp);
}
int
-dbm_rdonly(dbp)
- DBM *dbp;
+dbm_rdonly(DBM *dbp)
{
HTAB *hashp = (HTAB *)dbp->internal;