update for HEAD-2003091401
[reactos.git] / lib / crtdll / math / cabs.c
index 73d4643..ca9e842 100644 (file)
@@ -1,5 +1,8 @@
 #include <msvcrt/math.h>
 
+/*
+ * @implemented
+ */
 double _cabs( struct _complex z )
 {
        return sqrt( z.x*z.x + z.y*z.y );