diff options
author | delphij <delphij@FreeBSD.org> | 2009-03-02 23:47:18 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2009-03-02 23:47:18 +0000 |
commit | 7fd77a056c7750353e5b351f39749ba813255b32 (patch) | |
tree | 5a67c3be623d7be485fac882eb4ef91bd1e65262 /lib/libc/db/recno/rec_seq.c | |
parent | 63f98fcc6a46518f1e430026c32dd9c31dff0a84 (diff) | |
download | FreeBSD-src-7fd77a056c7750353e5b351f39749ba813255b32.zip FreeBSD-src-7fd77a056c7750353e5b351f39749ba813255b32.tar.gz |
Diff reduction against OpenBSD: ANSI'fy prototypes.
(This is part of a larger changeset which is intended to reduce diff only,
thus some prototypes were left intact since they will be changed in the
future).
Verified with: md5(1)
Diffstat (limited to 'lib/libc/db/recno/rec_seq.c')
-rw-r--r-- | lib/libc/db/recno/rec_seq.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/db/recno/rec_seq.c b/lib/libc/db/recno/rec_seq.c index 85465fa..9290d0e 100644 --- a/lib/libc/db/recno/rec_seq.c +++ b/lib/libc/db/recno/rec_seq.c @@ -57,10 +57,7 @@ __FBSDID("$FreeBSD$"); * RET_ERROR, RET_SUCCESS or RET_SPECIAL if there's no next key. */ int -__rec_seq(dbp, key, data, flags) - const DB *dbp; - DBT *key, *data; - u_int flags; +__rec_seq(const DB *dbp, DBT *key, DBT *data, u_int flags) { BTREE *t; EPG *e; |