]> git.saurik.com Git - apple/libc.git/blobdiff - db/btree/FreeBSD/bt_close.c
Libc-825.24.tar.gz
[apple/libc.git] / db / btree / FreeBSD / bt_close.c
index c211d5be48bf96fcd5e338032dbee679f8830481..89359b5d340611c62050af8e020008ad722f3d3f 100644 (file)
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
  * 4. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
@@ -38,7 +34,7 @@
 static char sccsid[] = "@(#)bt_close.c 8.7 (Berkeley) 8/17/94";
 #endif /* LIBC_SCCS and not lint */
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/lib/libc/db/btree/bt_close.c,v 1.8 2002/03/22 21:52:00 obrien Exp $");
+__FBSDID("$FreeBSD: src/lib/libc/db/btree/bt_close.c,v 1.10 2009/03/02 23:47:18 delphij Exp $");
 
 #include "namespace.h"
 #include <sys/param.h>
@@ -65,8 +61,7 @@ static int bt_meta(BTREE *);
  *     RET_ERROR, RET_SUCCESS
  */
 int
-__bt_close(dbp)
-       DB *dbp;
+__bt_close(DB *dbp)
 {
        BTREE *t;
        int fd;
@@ -120,9 +115,7 @@ __bt_close(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;
@@ -163,8 +156,7 @@ __bt_sync(dbp, flags)
  *     RET_ERROR, RET_SUCCESS
  */
 static int
-bt_meta(t)
-       BTREE *t;
+bt_meta(BTREE *t)
 {
        BTMETA m;
        void *p;