Fixed compiling on 64-bit Windows
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403785
This commit is contained in:
parent
59d9335a2a
commit
56d28e32b9
1 changed files with 8 additions and 6 deletions
|
@ -28,17 +28,17 @@
|
||||||
#ifndef HAVE_LIBC
|
#ifndef HAVE_LIBC
|
||||||
/* These are some C runtime intrinsics that need to be defined */
|
/* These are some C runtime intrinsics that need to be defined */
|
||||||
|
|
||||||
#if defined(_MSC_VER) && !defined(_WIN64)
|
#if defined(_MSC_VER)
|
||||||
|
|
||||||
#ifndef __FLTUSED__
|
#ifndef __FLTUSED__
|
||||||
#define __FLTUSED__
|
#define __FLTUSED__
|
||||||
#ifdef __cplusplus
|
__declspec(selectany) int _fltused = 1;
|
||||||
extern "C"
|
|
||||||
#endif
|
|
||||||
__declspec(selectany)
|
|
||||||
int _fltused = 1;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef _WIN64
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
/* Float to long */
|
/* Float to long */
|
||||||
void
|
void
|
||||||
__declspec(naked)
|
__declspec(naked)
|
||||||
|
@ -693,6 +693,8 @@ RETZERO:
|
||||||
/* *INDENT-ON* */
|
/* *INDENT-ON* */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* _WIN64 */
|
||||||
|
|
||||||
#endif /* MSC_VER */
|
#endif /* MSC_VER */
|
||||||
|
|
||||||
#endif /* !HAVE_LIBC */
|
#endif /* !HAVE_LIBC */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue