mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 13:32:01 +00:00
Minor change for some borland defs.
This commit is contained in:
parent
c3649a242a
commit
b3a9432b70
1 changed files with 24 additions and 20 deletions
|
@ -264,27 +264,31 @@
|
|||
#define strcasecmp(s1, s2) stricmp((s1), (s2))
|
||||
#define strncasecmp(s1, s2, n) strnicmp((s1), (s2), (n))
|
||||
|
||||
/* Define if you have the <fnmatch.h> header file. */
|
||||
#define HAVE_FNMATCH_H 1
|
||||
|
||||
/* Experimental 3DNOW support */
|
||||
#ifdef HAVE_3DNOW_ASM
|
||||
# define atan _atan
|
||||
# define atan2 _atan2
|
||||
# define acos _acos
|
||||
# define asin _asin
|
||||
# define log _log
|
||||
# define log10 _log10
|
||||
# define pow _pow
|
||||
# define exp _exp
|
||||
# define sqrt _sqrt
|
||||
# define fabs _fabs
|
||||
# define ceil _ceil
|
||||
# define floor _floor
|
||||
# define frexp _frexp
|
||||
# define ldexp _ldexp
|
||||
# define modf _modf
|
||||
# define fmod _fmod
|
||||
# define sincos _sincos
|
||||
# define sin _sin
|
||||
# define cos _cos
|
||||
# define tan _tan
|
||||
#define atan _atan
|
||||
#define atan2 _atan2
|
||||
#define acos _acos
|
||||
#define asin _asin
|
||||
#define log _log
|
||||
#define log10 _log10
|
||||
#define pow _pow
|
||||
#define exp _exp
|
||||
#define sqrt _sqrt
|
||||
#define fabs _fabs
|
||||
#define ceil _ceil
|
||||
#define floor _floor
|
||||
#define frexp _frexp
|
||||
#define ldexp _ldexp
|
||||
#define modf _modf
|
||||
#define fmod _fmod
|
||||
#define sincos _sincos
|
||||
#define sin _sin
|
||||
#define cos _cos
|
||||
#define tan _tan
|
||||
#endif
|
||||
|
||||
#endif // _CONFIG_H
|
||||
|
|
Loading…
Reference in a new issue