xref: /netbsd-src/external/bsd/jemalloc/dist/msvc/test_threads/test_threads_main.cpp (revision 53d1339bf7f9c7367b35a9e1ebe693f9b047a47b)
1 #include "test_threads.h"
2 #include <future>
3 #include <functional>
4 #include <chrono>
5 
6 using namespace std::chrono_literals;
7 
8 int main(int argc, char** argv) {
9   int rc = test_threads();
10   return rc;
11 }
12