Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / printf_fast_f.c
1 // Same as printf_fast, but with floating point enabled
2
3 #define SDCC_FLOAT_LIB
4 #include <float.h>
5
6 #ifdef FLOAT_ASM_MCS51
7
8 #define FLOAT
9 #define PRINTF_FAST printf_fast_f
10
11 #include "printf_fast.c"
12
13 #endif