• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * This file has no copyright assigned and is placed in the Public Domain.
3  * This file is part of the mingw-w64 runtime package.
4  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5  */
6 
7 #include <_mingw.h>
8 
9 extern void (* __MINGW_IMP_SYMBOL(_fpreset))(void);
10 void _fpreset (void);
11 
_fpreset(void)12 void _fpreset (void)
13 {
14   (* __MINGW_IMP_SYMBOL(_fpreset))();
15 }
16 
17 #ifdef __GNUC__
18 void __attribute__ ((alias ("_fpreset"))) fpreset(void);
19 #else
fpreset(void)20 void fpreset(void) {
21     _fpreset();
22 }
23 #endif
24