General Purpose library for Freestanding C++ and POSIX systems
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

21 linhas
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