summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/16 threads/main.cpp
blob: 67ee110a37390d1650541de4ed9c707bdecac5f5 (plain)
1
2
3
4
5
6
7
8
9
#include "cmMod.hpp"

#include <cstdlib>

int main() {
  CmMod cc;
  cc.asyncIncrement();
  return cc.getNum() == 1 ? EXIT_SUCCESS : EXIT_FAILURE;
}