/* * cabs() wrapper for hypot(). * * Written by J.T. Conklin, <jtc@wimsey.com> * Placed into the Public Domain, 1994. */#include<math.h>double__cabs(z)struct__cabs_complexz;{return__hypot(z.x,z.y);}weak_alias(__cabs,cabs)#ifdef NO_LONG_DOUBLEstrong_alias(__cabs,__cabsl)weak_alias(__cabs,cabsl)#endif