reorder db includes

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7159 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-10-17 10:57:49 +00:00
parent 0ab9726967
commit 2b505e349e

View File

@@ -43,15 +43,17 @@
#ifndef __XDBM_H__
#define __XDBM_H__
#ifdef HAVE_NDBM_H
#if defined(HAVE_DB_185_H)
#include <db_185.h>
#elif defined(HAVE_DB_H)
#define DB_DBM_HSEARCH 1
#include <db.h>
#elif defined(HAVE_NDBM_H)
#include <ndbm.h>
#elif defined(HAVE_DBM_H)
#include <dbm.h>
#elif defined(HAVE_RPCSVC_DBM_H)
#include <rpcsvc/dbm.h>
#elif defined(HAVE_DB_H)
#define DB_DBM_HSEARCH 1
#include <db.h>
#endif
/* Macros to convert ndbm names to dbm names.