aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/includes/fftbench.h
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2010-05-03 09:27:26 -0300
committerLeandro A. F. Pereira <leandro@hardinfo.org>2010-05-03 21:08:06 -0300
commit9273c075a2f993c5154614b70233d8f74515c851 (patch)
treeeb72a8c58e6bc8f4ca3b739d28fbecc269c0052d /hardinfo2/includes/fftbench.h
parent9a50155ec3e27aa6cedf3f118196f1947c769a29 (diff)
Move files from hardinfo2 to root.
Diffstat (limited to 'hardinfo2/includes/fftbench.h')
-rw-r--r--hardinfo2/includes/fftbench.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/hardinfo2/includes/fftbench.h b/hardinfo2/includes/fftbench.h
deleted file mode 100644
index 7c0afc3d..00000000
--- a/hardinfo2/includes/fftbench.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef __FFTBENCH_H__
-#define __FFTBENCH_H__
-
-#include <glib.h>
-
-typedef struct _FFTBench FFTBench;
-
-struct _FFTBench {
- double **a, *b, *r;
- int *p;
-};
-
-FFTBench *fft_bench_new(void);
-void fft_bench_run(FFTBench *fftbench);
-void fft_bench_free(FFTBench *fftbench);
-
-#endif /* __FFTBENCH_H__ */
-
-