From a7935daae7468236fb8e2b4859e586840b8cf09a Mon Sep 17 00:00:00 2001 From: Ivan Krylov Date: Fri, 14 Dec 2018 13:15:27 +0300 Subject: [PATCH] conv.h, hsfft.h, real.h: squash remaining redundant typedefs --- src/conv.h | 2 -- src/hsfft.h | 2 -- src/real.h | 2 -- 3 files changed, 6 deletions(-) diff --git a/src/conv.h b/src/conv.h index 4994b13..ffeba29 100644 --- a/src/conv.h +++ b/src/conv.h @@ -17,8 +17,6 @@ extern "C" { #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) -typedef struct conv_set* conv_object; - conv_object conv_init(int N, int L); int factorf(int M); diff --git a/src/hsfft.h b/src/hsfft.h index de580c6..52297dd 100644 --- a/src/hsfft.h +++ b/src/hsfft.h @@ -32,8 +32,6 @@ extern "C" { #define SMUL(a,b) ((a)*(b)) */ -typedef struct fft_set* fft_object; - fft_object fft_init(int N, int sgn); void fft_exec(fft_object obj,fft_data *inp,fft_data *oup); diff --git a/src/real.h b/src/real.h index 2822bb1..8632305 100644 --- a/src/real.h +++ b/src/real.h @@ -14,8 +14,6 @@ extern "C" { #endif -typedef struct fft_real_set* fft_real_object; - fft_real_object fft_real_init(int N, int sgn); void fft_r2c_exec(fft_real_object obj,fft_type *inp,fft_data *oup);