• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 Dmitry Arkhipov
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 
7 #include <string>
8 #include <iostream>
9 
main(int,char const ** argv)10 int main(int, char const** argv) {
11   return THREADING == std::string(argv[1]) ? EXIT_SUCCESS : EXIT_FAILURE;
12 }
13