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