mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
324c278a31
git-svn-id: file:///svn/toku/tokudb@16673 c7de825b-a66e-492c-adef-691d508d4ae1
15 lines
256 B
C
15 lines
256 B
C
#include <test.h>
|
|
#include <stdio.h>
|
|
#include <toku_assert.h>
|
|
#include <toku_time.h>
|
|
|
|
int test_main(int argc, char *argv[]) {
|
|
int r;
|
|
struct timeval tv;
|
|
struct timezone tz;
|
|
|
|
r = gettimeofday(&tv, 0);
|
|
assert(r == 0);
|
|
|
|
return 0;
|
|
}
|