* as/z80/z80mch.c: fixed bug #1704376: missing as-z80 errors
[fw/sdcc] / 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