add XP_MAC to the ifdef around dbopen (was in macToBeImplemented.cp)

This commit is contained in:
brade%netscape.com 1998-12-21 16:46:17 +00:00
Родитель 4529df7478
Коммит 6090ad5d8c
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -71,11 +71,15 @@ extern "C" {
extern "C" { extern "C" {
#if defined(XP_UNIX) #if defined(XP_UNIX) || defined(XP_MAC)
DB * DB *
dbopen(const char *fname, int flags,int mode, DBTYPE type, dbopen(const char *fname, int flags,int mode, DBTYPE type,
const void *openinfo) const void *openinfo)
{ {
#if defined(XP_MAC)
PR_ASSERT(FALSE);
#endif
return NULL; return NULL;
} }
#endif #endif