mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 00:31:08 +00:00
10 lines
152 B
C
10 lines
152 B
C
#include "nldbl-compat.h"
|
|||
#include <complex.h>
|
|||
|
|||
double _Complex
|
|||
attribute_hidden
|
|||
cpowl (double _Complex x, double _Complex y)
|
|||
{
|
|||
return cpow (x, y);
|
|||
}
|