Remove prototype parameter names, both because they didn't begin with
authorDonn Seeley <donn@ucbvax.Berkeley.EDU>
Sat, 23 Feb 1991 00:30:03 +0000 (16:30 -0800)
committerDonn Seeley <donn@ucbvax.Berkeley.EDU>
Sat, 23 Feb 1991 00:30:03 +0000 (16:30 -0800)
underscores and because they contained three of the four uses of C++ keywords.

SCCS-vsn: include/db.h 5.3

usr/src/include/db.h

index 1e0e6dd..bc9af00 100644 (file)
@@ -4,7 +4,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)db.h        5.2 (Berkeley) %G%
+ *     @(#)db.h        5.3 (Berkeley) %G%
  */
 
 #ifndef _DB_H_
  */
 
 #ifndef _DB_H_
@@ -116,14 +116,11 @@ typedef struct {
 #include <sys/cdefs.h>
 __BEGIN_DECLS
 DB     *btree_open
 #include <sys/cdefs.h>
 __BEGIN_DECLS
 DB     *btree_open
-           __P((const char *file, int flags, int mode,
-           const BTREEINFO *private));
+           __P((const char *, int, int, const BTREEINFO *));
 DB     *hash_open
 DB     *hash_open
-           __P((const char *file, int flags, int mode,
-           const HASHINFO *private));
+           __P((const char *, int, int, const HASHINFO *));
 DB     *recno_open
 DB     *recno_open
-           __P((const char *file, int flags, int mode,
-           const RECNOINFO *private));
+           __P((const char *, int, int, const RECNOINFO *));
 __END_DECLS
 
 #endif /* !_DB_H_ */
 __END_DECLS
 
 #endif /* !_DB_H_ */