#include <vector>

#ifndef _OPENMP
#define OMPTL_OFF
#endif

#include <omptl/omptl_algorithm>

int main (int argc, char * const argv[])
{
       std::vector<int> zahlen(100000);
       omptl::sort(zahlen.begin(), zahlen.end());
       return 0;
}