X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fmath%2Fcabs.c;fp=lib%2Fcrtdll%2Fmath%2Fcabs.c;h=ca9e8426c73eb423a7e0b1251249528a0767dff7;hp=73d4643290f84206fd10608ac4f16dc931d05548;hb=a3df8bf1429570e0bd6c6428f6ed80073578cf4b;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/crtdll/math/cabs.c b/lib/crtdll/math/cabs.c index 73d4643..ca9e842 100644 --- a/lib/crtdll/math/cabs.c +++ b/lib/crtdll/math/cabs.c @@ -1,5 +1,8 @@ #include +/* + * @implemented + */ double _cabs( struct _complex z ) { return sqrt( z.x*z.x + z.y*z.y );