1#include "libm.h"
2
3double cabs(double complex z) {
4    return hypot(creal(z), cimag(z));
5}
6