const char ** => char * const *
[unix-history] / usr / src / include / db.h
index 1e0e6dd..09e5a6f 100644 (file)
@@ -4,7 +4,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)db.h        5.2 (Berkeley) %G%
+ *     @(#)db.h        5.4 (Berkeley) %G%
  */
 
 #ifndef _DB_H_
  */
 
 #ifndef _DB_H_
@@ -33,7 +33,7 @@ typedef struct {
 typedef struct {
        char *internal;         /* access method private; really void * */
        int (*close)();
 typedef struct {
        char *internal;         /* access method private; really void * */
        int (*close)();
-       int (*delete)();
+       int (*del)();
        int (*get)();
        int (*put)();
        int (*seq)();
        int (*get)();
        int (*put)();
        int (*seq)();
@@ -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_ */