cexpl.c 105 B

1234567
  1. #include "complex_impl.h"
  2. //FIXME
  3. long double complex cexpl(long double complex z)
  4. {
  5. return cexp(z);
  6. }