/* * cabs() wrapper for hypot(). * * Written by J.T. Conklin, * Placed into the Public Domain, 1994. */ #include #if defined(LIBM_SCCS) && !defined(lint) __RCSID("$NetBSD: compat_cabs.c,v 1.3 2017/05/13 02:58:03 maya Exp $"); #endif #include "../src/namespace.h" #include struct complex { double x; double y; }; double cabs(struct complex); __warn_references(cabs, "warning: reference to compatibility cabs()") double cabs(struct complex z) { return hypot(z.x, z.y); }