General Purpose library for Freestanding C++ and POSIX systems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 regels
285 B

#pragma once
#if defined(_M_IX86) or defined(__i386)
#if __clang__
#elif __GNUG__
#endif // __clang__
#elif defined(_M_X64) or defined(__amd64)
#include "gp/system/platforms/gcc-x86_64.hpp"
#if __clang__
#elif __GNUG__
#endif // __clang__
#endif // CPU ARCHITECTURE