Skip to content

Commit

Permalink
Add missing lal declarations (#58)
Browse files Browse the repository at this point in the history
* Add missing lal declerations

* Oops

* Need this
  • Loading branch information
spxiwh authored Apr 29, 2024
1 parent dcb268a commit 3208313
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sbank/overlap_cpu_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
#include <sys/types.h>

/* ---------------- LAL STUFF NEEDED ----------------- */
int XLALPrintError(const char *fmt, ...);

typedef struct tagCOMPLEX8Vector {
uint32_t length; /**< Number of elements in array. */
float complex *data; /**< Pointer to the data array. */
Expand All @@ -35,6 +37,8 @@ typedef struct tagCOMPLEX8FFTPlan COMPLEX8FFTPlan;

COMPLEX8FFTPlan * XLALCreateReverseCOMPLEX8FFTPlan( uint32_t size, int measurelvl );

int XLALCOMPLEX8VectorFFT (COMPLEX8Vector * restrict output, const COMPLEX8Vector * restrict input, const COMPLEX8FFTPlan *plan);

void XLALDestroyCOMPLEX8FFTPlan( COMPLEX8FFTPlan *plan );

/* ----------------------------------------------- */
Expand Down

0 comments on commit 3208313

Please sign in to comment.