From ce936edf62484bf46205eac48cdfb9b7b28a64b9 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 9 Dec 2015 21:49:09 +0200 Subject: unix/modtermios: Provide B57600 and B115200 constants only if defined. --- unix/modtermios.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'unix/modtermios.c') diff --git a/unix/modtermios.c b/unix/modtermios.c index a70edf5bf4..94074e1d00 100644 --- a/unix/modtermios.c +++ b/unix/modtermios.c @@ -136,8 +136,12 @@ STATIC const mp_rom_map_elem_t mp_module_termios_globals_table[] = { C(TCSANOW), C(B9600), + #ifdef B57600 C(B57600), + #endif + #ifdef B115200 C(B115200), + #endif #undef C }; -- cgit v1.2.3