summaryrefslogtreecommitdiff
path: root/src/libac3/cmplx.h
blob: a357fab38b0f05dfcd21736899cdc2494c54b6bd (plain)
1
2
3
4
5
6
7
8
9
#ifndef __COMPLEX_H__
#define __COMPLEX_H__

typedef struct complex {
	float re;
	float im;
} complex_t;

#endif