mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:12:58 +00:00
21 lines
409 B
C
21 lines
409 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/crt/??????
|
|
* PURPOSE: Unknown
|
|
* PROGRAMER: Unknown
|
|
* UPDATE HISTORY:
|
|
* 25/11/05: Added license header
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
void _fpreset(void)
|
|
{
|
|
/* FIXME: This causes an exception */
|
|
// __asm__ __volatile__("fninit\n\t");
|
|
return;
|
|
}
|