atomic.h 289 B

12345678910111213141516171819
  1. // Copyright 2013 Dolphin Emulator Project
  2. // Licensed under GPLv2
  3. // Refer to the license.txt file included.
  4. #ifndef _ATOMIC_H_
  5. #define _ATOMIC_H_
  6. #ifdef _WIN32
  7. #include "common/atomic_win32.h"
  8. #else
  9. // GCC-compatible compiler assumed!
  10. #include "common/atomic_gcc.h"
  11. #endif
  12. #endif