aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/src/atomic.h
diff options
context:
space:
mode:
authorGravatar ShizZy <shizzy@6bit.net>2013-09-04 20:17:46 -0400
committerGravatar ShizZy <shizzy@6bit.net>2013-09-04 20:17:46 -0400
commit7564d28faf780bc0967ab3f6ff11b29b44e4b1aa (patch)
tree48c87985296d0bc8d62785b8f3209f4b727d0cc0 /src/common/src/atomic.h
parent72325bef1d6d1e70f308e64bf7d764f9fd2abbc4 (diff)
replaced common code with dolphin common
Diffstat (limited to 'src/common/src/atomic.h')
-rw-r--r--src/common/src/atomic.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/common/src/atomic.h b/src/common/src/atomic.h
new file mode 100644
index 00000000..883bc14f
--- /dev/null
+++ b/src/common/src/atomic.h
@@ -0,0 +1,19 @@
+// Copyright 2013 Dolphin Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#ifndef _ATOMIC_H_
+#define _ATOMIC_H_
+
+#ifdef _WIN32
+
+#include "atomic_win32.h"
+
+#else
+
+// GCC-compatible compiler assumed!
+#include "atomic_gcc.h"
+
+#endif
+
+#endif