Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* $NetBSD: cabsl.c,v 1.1 2014/10/10 00:48:18 christos Exp $ */ /* * Public domain. */ #include "../src/namespace.h" #include <complex.h> #include <math.h> long double cabsl(long double complex z) { return hypotl(__real__ z, __imag__ z); }