2022-03-29 19:08:05 +03:00
|
|
|
/**
|
2025-04-01 15:01:01 +03:00
|
|
|
* Copyright (c) 2019-2025 Hailo Technologies Ltd. All rights reserved.
|
2022-03-29 19:08:05 +03:00
|
|
|
* Distributed under the MIT license (https://opensource.org/licenses/MIT)
|
2024-12-31 12:38:33 +02:00
|
|
|
**/
|
2022-03-29 19:08:05 +03:00
|
|
|
/**
|
|
|
|
|
* @file stdfloat.h
|
|
|
|
|
* @brief Defines fixed-size float types.
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
#ifndef _STDFLOAT_H
|
|
|
|
|
#define _STDFLOAT_H
|
|
|
|
|
|
|
|
|
|
typedef float float32_t;
|
|
|
|
|
typedef double float64_t;
|
|
|
|
|
|
|
|
|
|
#endif /* _STDFLOAT_H */
|