Loading...
include/ndbm.h Libc-320 Libc-498
--- Libc/Libc-320/include/ndbm.h
+++ Libc/Libc-498/include/ndbm.h
@@ -2,8 +2,6 @@
  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
- * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
  * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
@@ -63,41 +61,68 @@
 #ifndef _NDBM_H_
 #define	_NDBM_H_
 
-#include <db.h>
+#include <_types.h>
 
+#ifndef _MODE_T
+typedef __darwin_mode_t	mode_t;
+#define _MODE_T
+#endif
+
+#ifndef _SIZE_T
+#define _SIZE_T
+typedef __darwin_size_t	size_t;
+#endif
+
+#if !defined(_ANSI_SOURCE) && (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
 /* Map dbm interface onto db(3). */
+#include <fcntl.h>
 #define DBM_RDONLY	O_RDONLY
+#endif
 
 /* Flags to dbm_store(). */
 #define DBM_INSERT      0
 #define DBM_REPLACE     1
 
+#if !defined(_ANSI_SOURCE) && (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
 /*
  * The db(3) support for ndbm(3) always appends this suffix to the
  * file name to avoid overwriting the user's original database.
  */
 #define	DBM_SUFFIX	".db"
+#endif
 
 typedef struct {
-	char *dptr;
-	int dsize;
+	void *dptr;
+	size_t dsize;
 } datum;
 
-typedef DB DBM;
+#ifndef _DBM
+#define _DBM
+typedef struct {
+    char __opaque[sizeof(int) + 8 * sizeof(void *)];
+} DBM;
+#endif /* _DBM */
+
+#if !defined(_ANSI_SOURCE) && (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
 #define	dbm_pagfno(a)	DBM_PAGFNO_NOT_AVAILABLE
+#endif
 
 __BEGIN_DECLS
+int	 dbm_clearerr( DBM *);
 void	 dbm_close(DBM *);
-int	 dbm_clearerr( DBM *);
 int	 dbm_delete(DBM *, datum);
+#if !defined(_ANSI_SOURCE) && (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
+int	 dbm_dirfno(DBM *);
+#endif
 int	 dbm_error( DBM *);
 datum	 dbm_fetch(DBM *, datum);
 datum	 dbm_firstkey(DBM *);
+#if !defined(_ANSI_SOURCE) && (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
 long	 dbm_forder(DBM *, datum);
+#endif
 datum	 dbm_nextkey(DBM *);
-DBM	*dbm_open(const char *, int, int);
+DBM	*dbm_open(const char *, int, mode_t);
 int	 dbm_store(DBM *, datum, datum, int);
-int	 dbm_dirfno(DBM *);
 __END_DECLS
 
 #endif /* !_NDBM_H_ */