2026-07-30 01:10:31 -04:00
|
|
|
/**
|
|
|
|
|
* @file types.h
|
|
|
|
|
* @brief Declares the public types API.
|
|
|
|
|
*/
|
|
|
|
|
|
2026-05-08 22:01:56 -04:00
|
|
|
#ifndef _AKGL_TYPES_H_
|
|
|
|
|
#define _AKGL_TYPES_H_
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
typedef float float32_t;
|
|
|
|
|
typedef double float64_t;
|
|
|
|
|
|
|
|
|
|
#endif // _AKGL_TYPES_H_
|