From eb63bdd072eafe6aba40d254a71fd87285f497da Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 20 Jan 1996 10:00:23 +0000 Subject: * sysdeps/unix/sysv/linux/tcdrain.c: Define tcdrain, not __tcdrain. * posix/glob.c (glob): Use prototype in getlogin decl. * db/ndbm.h: Declare dbm_error, dbm_clearerr. * db/db/db.c (__dberr): Define with prototype. (__dbpanic): Use prototypes in casts. * db/hash/hash_log2.c: Add prototype decl. * sysdeps/generic/_strerror.c (_strerror_internal): Define with prototype. --- db/db/db.c | 18 +++++++++++------- db/hash/hash_log2.c | 2 ++ db/ndbm.h | 2 ++ 3 files changed, 15 insertions(+), 7 deletions(-) (limited to 'db') diff --git a/db/db/db.c b/db/db/db.c index a18f056..c93b36f 100644 --- a/db/db/db.c +++ b/db/db/db.c @@ -74,7 +74,7 @@ dbopen(fname, flags, mode, type, openinfo) } static int -__dberr() +__dberr __P((void)) { return (RET_ERROR); } @@ -90,10 +90,14 @@ __dbpanic(dbp) DB *dbp; { /* The only thing that can succeed is a close. */ - dbp->del = (int (*)())__dberr; - dbp->fd = (int (*)())__dberr; - dbp->get = (int (*)())__dberr; - dbp->put = (int (*)())__dberr; - dbp->seq = (int (*)())__dberr; - dbp->sync = (int (*)())__dberr; + dbp->del = (int (*)__P((const struct __db *, + const DBT *, u_int))) __dberr; + dbp->get = (int (*)__P((const struct __db *, + const DBT *, DBT *, u_int))) __dberr; + dbp->put = (int (*)__P((const struct __db *, + DBT *, const DBT *, u_int))) __dberr; + dbp->seq = (int (*)__P((const struct __db *, + DBT *, DBT *, u_int))) __dberr; + dbp->sync = (int (*)__P((const struct __db *, u_int))) __dberr; + dbp->fd = (int (*)__P((const struct __db *))) __dberr; } diff --git a/db/hash/hash_log2.c b/db/hash/hash_log2.c index c8c56bf..92fda72 100644 --- a/db/hash/hash_log2.c +++ b/db/hash/hash_log2.c @@ -42,6 +42,8 @@ static char sccsid[] = "@(#)hash_log2.c 8.2 (Berkeley) 5/31/94"; #include +u_int32_t __log2 __P((u_int32_t)); + u_int32_t __log2(num) u_int32_t num; diff --git a/db/ndbm.h b/db/ndbm.h index a545bca..48c4083 100644 --- a/db/ndbm.h +++ b/db/ndbm.h @@ -72,6 +72,8 @@ datum dbm_nextkey __P((DBM *)); DBM *dbm_open __P((const char *, int, int)); int dbm_store __P((DBM *, datum, datum, int)); int dbm_dirfno __P((DBM *)); +int dbm_error __P((DBM *)); +int dbm_clearerr __P((DBM *)); __END_DECLS #endif /* !_NDBM_H_ */ -- cgit v1.1