From 63e46abdb8764bc97e91bae862c8d461e61b1965 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 8 Apr 2014 19:25:03 -0400 Subject: got rid of 'src' folders in each sub-project --- src/common/atomic.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/common/atomic.h (limited to 'src/common/atomic.h') diff --git a/src/common/atomic.h b/src/common/atomic.h new file mode 100644 index 000000000..883bc14fb --- /dev/null +++ b/src/common/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 -- cgit v1.2.3