aboutsummaryrefslogtreecommitdiffstats
path: root/code/asm
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-11-06 16:41:57 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-11-06 16:41:57 +0000
commiteef1b6891a10d35db312ac09c1796d30e336561c (patch)
tree953923f3c0f18821ace3631bcb94d36f5bb43b6f /code/asm
parentec0dd26318749fd683cb18d63d9d6fae95417174 (diff)
downloadioquake3-aero-eef1b6891a10d35db312ac09c1796d30e336561c.tar.gz
ioquake3-aero-eef1b6891a10d35db312ac09c1796d30e336561c.zip
Don't define ELF, use __ELF__ instead
git-svn-id: svn://svn.icculus.org/quake3/trunk@1207 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/asm')
-rw-r--r--code/asm/qasm.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/code/asm/qasm.h b/code/asm/qasm.h
index c32aafc..b02a60a 100644
--- a/code/asm/qasm.h
+++ b/code/asm/qasm.h
@@ -24,15 +24,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "../qcommon/q_platform.h"
-#if defined(__MINGW32__) || defined(MACOS_X)
-#undef ELF
-#endif
-
#ifdef __ELF__
.section .note.GNU-stack,"",@progbits
#endif
-#ifdef ELF
+#ifdef __ELF__
#define C(label) label
#else
#define C(label) _##label