1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-04-17 09:44:08 -05:00
Lioncash 90e994471a Common: Move header guards over to pragma once
Also replaced C headers with the C++ equivalent ones
2014-08-17 13:45:55 -04:00

17 lines
256 B
C

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#ifdef _WIN32
#include "common/atomic_win32.h"
#else
// GCC-compatible compiler assumed!
#include "common/atomic_gcc.h"
#endif