aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/include/sparc/solaris/math.h
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-02 16:05:14 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-02 16:05:14 +0000
commit2e5b78c0a36480e3735692cd2795dee291936fe8 (patch)
tree0dad62aefa78bb418723d298e6d4181e2bb61a37 /code/tools/lcc/include/sparc/solaris/math.h
parent74f0ff6259b3cfa4862ea45a9e70db5acf3ab347 (diff)
downloadioquake3-aero-2e5b78c0a36480e3735692cd2795dee291936fe8.tar.gz
ioquake3-aero-2e5b78c0a36480e3735692cd2795dee291936fe8.zip
* Removed the last of the binary target stuff from lcc (hopefully)
git-svn-id: svn://svn.icculus.org/quake3/trunk@228 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/tools/lcc/include/sparc/solaris/math.h')
-rw-r--r--code/tools/lcc/include/sparc/solaris/math.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/code/tools/lcc/include/sparc/solaris/math.h b/code/tools/lcc/include/sparc/solaris/math.h
deleted file mode 100644
index 93b8bdc..0000000
--- a/code/tools/lcc/include/sparc/solaris/math.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __MATH
-#define __MATH
-
-extern double infinity(void);
-#define HUGE_VAL (infinity())
-
-extern double acos(double);
-extern double asin(double);
-extern double atan(double);
-extern double atan2(double, double);
-extern double cos(double);
-extern double sin(double);
-extern double tan(double);
-extern double cosh(double);
-extern double sinh(double);
-extern double tanh(double);
-extern double exp(double);
-extern double frexp(double, int *);
-extern double ldexp(double, int);
-extern double log(double);
-extern double log10(double);
-extern double modf(double, double *);
-extern double pow(double, double);
-extern double sqrt(double);
-extern double ceil(double);
-extern double fabs(double);
-extern double floor(double);
-extern double fmod(double, double);
-
-#endif /* __MATH */