00001 #ifndef LEVINSON_C99_H_DEF 00002 #define LEVINSON_C99_H_DEF 00003 00004 extern void slevinson( int n, float *r, float *b, float *x); 00005 extern void dlevinson( int n, double *r, double *b, double *x); 00006 extern void clevinson( int n, _Complex float *r, _Complex float *b, _Complex float *x); 00007 extern void zlevinson( int n, _Complex double *r, _Complex double *b, _Complex double *x); 00008 00009 #endif 00010