19 lines
381 B
C++
19 lines
381 B
C++
#include "flaimsql.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
SQL_STATS stats;
|
|
memset(&stats, 0, sizeof(stats));
|
|
stats.eErrorType = SQL_NO_ERROR;
|
|
if (stats.eErrorType != SQL_NO_ERROR)
|
|
{
|
|
fprintf(stderr, "unexpected SQL_STATS value\n");
|
|
return 1;
|
|
}
|
|
printf("mars-nwe FlaimSQL header/link smoke passed\n");
|
|
return 0;
|
|
}
|