#include "xflaim.h" #include int main(void) { IF_DbSystem *dbSystem = NULL; RCODE rc = FlmAllocDbSystem(&dbSystem); if (RC_BAD(rc) || dbSystem == NULL) { fprintf(stderr, "FlmAllocDbSystem failed: 0x%04x\n", (unsigned)rc); return 1; } dbSystem->Release(); printf("mars-nwe XFLAIM allocation smoke passed\n"); return 0; }