fork download
  1. #include <stdio.h>
  2. #include <pthread.h>
  3.  
  4. int main(void) {
  5. printf("%d\n", sizeof(size_t)); // 4 confirms that it's a 32 bit system
  6. printf("%d\n", sizeof(pthread_barrier_t));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
4
20