2013-09-05 00:17:46 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 17:45:50 +00:00
|
|
|
#pragma once
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/atomic_win32.h"
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// GCC-compatible compiler assumed!
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/atomic_gcc.h"
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
#endif
|