mirror of https://github.com/jlizier/jidt
14 lines
152 B
C
14 lines
152 B
C
|
#ifndef DIGAMMA_H
|
||
|
#define DIGAMMA_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
long double cpuDigamma(long double x);
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|