diff options
Diffstat (limited to 'src/misc.h')
-rw-r--r-- | src/misc.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3,8 +3,10 @@ #include <stdlib.h> /* for size_t */ +#define LN_MAX 100 #define LNFACT_MAX 100 +double ln(unsigned int n); double lnfact(unsigned int n); double kahan_sum(double *x, size_t n); double interp1d(double x, double *xp, double *yp, size_t n); |