Files
eden/src/common/atomic.h
T

20 lines
289 B
C
Raw Normal View History

2013-09-04 20:17:46 -04:00
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#ifndef _ATOMIC_H_
#define _ATOMIC_H_
#ifdef _WIN32
#include "common/atomic_win32.h"
2013-09-04 20:17:46 -04:00
#else
// GCC-compatible compiler assumed!
#include "common/atomic_gcc.h"
2013-09-04 20:17:46 -04:00
#endif
#endif