matthiasm@6: #ifndef NNLS_H matthiasm@6: #define NNLS_H matthiasm@6: Chris@22: extern "C" { matthiasm@6: Chris@22: int nnls_(double *a, int *mda, int *m, int *n, Chris@22: double *b, double *x, double *rnorm, Chris@22: double *w, double *zz, int *index, int *mode); matthiasm@6: Chris@22: #define NNLS nnls_ matthiasm@6: Chris@22: } matthiasm@6: matthiasm@6: #endif matthiasm@6: