[MINGW]
[reactos.git] / reactos / lib / 3rdparty / mingw / CRT_fp8.c
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-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
12 void _fpreset (void)
13 {
14 (* __MINGW_IMP_SYMBOL(_fpreset))();
15 }
16
17 void __attribute__ ((alias ("_fpreset"))) fpreset(void);