Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CRT_fp10.c « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 516c86c4aaad90613f33c9485c10a97768eedb67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * CRT_FP10.c
 *
 * This defines _fpreset as asm ("fnint"). Calls to _fpreset
 * will set default floating point precesion to 64-bit mantissa
 * at app startup.
 *
 * Linking in CRT_FP10.o before libmingw.a will override the definition
 * set in CRT_FP8.o.
 */

/* Override library  _fpreset() with asm fninit */
void _fpreset (void)
  { __asm__ ( "fninit" ) ;}

#if defined(__PCC__)
void _Pragma("alias _fpreset") fpreset(void);
#else
void __attribute__ ((alias ("_fpreset"))) fpreset(void);
#endif