#include static const char *DB_FILE = "nserver.db"; int db_init() { // Create DB if it's not already created. GDBM_FILE gf = gdbm_open(DB_FILE, 0, GDBM_WRCREAT, S_IRUSR|S_IWUSR, NULL); check(gf != NULL, "unable to init db"); // Close the DB. int rc = gdbm_close(gf); check(rc == 0, "error closing db after init"); return 0; error: return -1; }