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