1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

remove unneded #include's that had a dubious explanation

This commit is contained in:
Sergei Golubchik
2015-10-23 11:31:18 +02:00
parent 2c0bcfff8c
commit fb8713385f
30 changed files with 15 additions and 28 deletions

View File

@@ -16,6 +16,10 @@
#ifndef _decimal_h
#define _decimal_h
#ifdef __cplusplus
extern "C" {
#endif
typedef enum
{TRUNCATE=0, HALF_EVEN, HALF_UP, CEILING, FLOOR}
decimal_round_mode;
@@ -112,5 +116,9 @@ void max_decimal(int precision, int frac, decimal_t *to);
#define E_DEC_ERROR 31
#define E_DEC_FATAL_ERROR 30
#ifdef __cplusplus
}
#endif
#endif