From c459db422be8ea05851703bfc8b2d0b0fc11c3ee Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Mon, 16 May 2016 13:33:13 -0700 Subject: [PATCH] Remove unused variables. (#35) --- examples/platform/posix/serial.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/platform/posix/serial.c b/examples/platform/posix/serial.c index 8cf488c3f..9355162a1 100644 --- a/examples/platform/posix/serial.c +++ b/examples/platform/posix/serial.c @@ -48,9 +48,6 @@ char *ptsname(int fd); extern struct gengetopt_args_info args_info; -static struct termios s_in_termios; -static struct termios s_out_termios; - static uint8_t s_receive_buffer[128]; static int s_in_fd; static int s_out_fd;