mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 23:01:22 +00:00

-critical.c: catch (more) invalid use -impl. sscanf (stolen from wine) crt: -use native mingw headers and not private copies of them -converted some routines to using tchar == impl. many missing unicode routines -impl. sscanf and friends correctly (stolen from wine) tchar.h: -added lotsa missin stuff svn path=/trunk/; revision=13608
14 lines
145 B
C
14 lines
145 B
C
#include <math.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
double _cabs( struct _complex z )
|
|
{
|
|
return sqrt( z.x*z.x + z.y*z.y );
|
|
// return hypot(z.x,z.y);
|
|
}
|
|
|
|
|
|
|
|
|