repo.or.cz
/
lsnes.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix number of compile errors and warnings with GCC 14
[lsnes.git]
/
include
/
library
/
arch-detect.hpp
blob
48a546b50e8343df1427df1e645556a34af89cd1
1
#ifndef _library__archdetect__hpp__included__
2
#define _library__archdetect__hpp__included__
3
4
#if defined(__i386__) || defined(__x86_64__)
5
#ifndef ARCH_IS_I386
6
#define ARCH_IS_I386
7
#endif
8
#endif
9
10
#endif