mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
554bbb6bab
Implement controlfp, statusfp, fpreset, clearfp. CORE-17757 CORE-17604
13 lines
268 B
C
13 lines
268 B
C
/*
|
|
* PROJECT: ReactOS CRT library
|
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
|
* PURPOSE: Implementation of _fpreset
|
|
* COPYRIGHT: Copyright 2021 Roman Masanin <36927roma@gmail.com>
|
|
*/
|
|
|
|
#include "fpscr.h"
|
|
|
|
void _fpreset(void)
|
|
{
|
|
__setfp(0x0);
|
|
}
|