summaryrefslogtreecommitdiffstats
path: root/src/types.h
blob: 2755815f9af1348d4da6ea4589ab20eb1fe8e589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __TYPES_H__
#define __TYPES_H__

#define __INLINE static inline __attribute__((always_inline))

#if defined(complex)
	typedef complex float cdata_t;
#else
	typedef float cdata_t[2];
#endif
	typedef float data_t;

#endif


OpenPOWER on IntegriCloud