10 lines
145 B
C
10 lines
145 B
C
|
|
#ifndef _AKGL_TYPES_H_
|
||
|
|
#define _AKGL_TYPES_H_
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
typedef float float32_t;
|
||
|
|
typedef double float64_t;
|
||
|
|
|
||
|
|
#endif // _AKGL_TYPES_H_
|