1/* $NetBSD$ */
2
3/*
4 * Written by Matthias Drochner <drochner@NetBSD.org>.
5 * Public domain.
6 */
7
8#include "../src/namespace.h"
9#include <complex.h>
10#include <math.h>
11
12float
13cabsf(float complex z)
14{
15
16	return hypotf(__real__ z, __imag__ z);
17}
18