diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-10-04 15:18:22 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-10-04 15:18:22 +0000 |
commit | 1c7864f6d4380797b07c7149111066b61f69f689 (patch) | |
tree | 59057c26f97fdf846b0193e852eeea7e707a9e20 /lcc/src/bind.c | |
parent | 91db83f0cc7c564ff6c853eeb4e790732dae81cd (diff) | |
download | ioquake3-aero-1c7864f6d4380797b07c7149111066b61f69f689.tar.gz ioquake3-aero-1c7864f6d4380797b07c7149111066b61f69f689.zip |
* Moved lcc and q3asm into code/tools
git-svn-id: svn://svn.icculus.org/quake3/trunk@134 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'lcc/src/bind.c')
-rw-r--r-- | lcc/src/bind.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lcc/src/bind.c b/lcc/src/bind.c deleted file mode 100644 index c27036f..0000000 --- a/lcc/src/bind.c +++ /dev/null @@ -1,23 +0,0 @@ -#include "c.h" -extern Interface alphaIR; -extern Interface mipsebIR, mipselIR; -extern Interface sparcIR, solarisIR; -extern Interface x86IR, x86linuxIR; -extern Interface symbolicIR, symbolic64IR; -extern Interface nullIR; -extern Interface bytecodeIR; -Binding bindings[] = { - /*{ "alpha/osf", &alphaIR },*/ - /*{ "mips/irix", &mipsebIR },*/ - /*{ "mips/ultrix", &mipselIR },*/ - /*{ "sparc/sun", &sparcIR },*/ - /*{ "sparc/solaris", &solarisIR },*/ - /*{ "x86/win32", &x86IR },*/ - /*{ "x86/linux", &x86linuxIR },*/ - { "symbolic/osf", &symbolic64IR }, - { "symbolic/irix", &symbolicIR }, - { "symbolic", &symbolicIR }, - { "null", &nullIR }, - { "bytecode", &bytecodeIR }, - { NULL, NULL }, -}; |