Commit 38219f4c authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

def the db_create functions in an include file for icc. closes #1264

git-svn-id: file:///svn/toku/tokudb.1032b@7868 c7de825b-a66e-492c-adef-691d508d4ae1
parent 477b0463
......@@ -19,7 +19,7 @@ const char *toku_copyright_string = "Copyright (c) 2007, 2008 Tokutek Inc. All
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <db.h>
#include "toku_assert.h"
#include "ydb.h"
#include "ydb-internal.h"
......
......@@ -10,4 +10,10 @@ void toku_ydb_init(void);
// Called when the ydb library is unloaded.
void toku_ydb_destroy(void);
// db_env_create for the trace library
int db_env_create_toku10(DB_ENV **, u_int32_t) __attribute__((__visibility__("default")));
// db_create for the trace library
int db_create_toku10(DB **, DB_ENV *, u_int32_t) __attribute__((__visibility__("default")));
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment