Advertisement
dechicom

Untitled

Jan 24th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #ifndef EXCEPTION2
  2. #define EXCEPTION2
  3.  
  4. #ifdef _REENTRANT
  5. #ifdef _POSIX_THREADS
  6. #define msg printf("with POSIX thread\n")
  7. #else
  8. #define msg printf("unkown thread libray\n")
  9. #endif
  10. #else
  11. #define msg printf("no thread\n")
  12. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement