mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
7 lines
102 B
Plaintext
7 lines
102 B
Plaintext
|
#if __GNUC__ == 3
|
||
|
#include <ext/hash_map>
|
||
|
using __gnu_cxx::hash_map;
|
||
|
#else
|
||
|
#include <hash_map>
|
||
|
#endif
|