From d62a9f148d9924c32f62597224db7fd6f255d4c2 Mon Sep 17 00:00:00 2001 From: Jeremiah Mahler Date: Fri, 19 Dec 2014 07:22:17 -0800 Subject: [PATCH] slcand: remove #define EXIT_FAILURE, EXIT_SUCCESS slcand has #defines for EXIT_FAILURE and EXIT_SUCCESS but this is unnecessary since they are already provided by stdlib.h. Remove them. Signed-off-by: Jeremiah Mahler Signed-off-by: Oliver Hartkopp --- slcand.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/slcand.c b/slcand.c index 55775da..c4c81c5 100644 --- a/slcand.c +++ b/slcand.c @@ -50,9 +50,6 @@ /* The length of ttypath buffer */ #define TTYPATH_LENGTH 64 -#define EXIT_SUCCESS 0 -#define EXIT_FAILURE 1 - /* UART flow control types */ #define FLOW_NONE 0 #define FLOW_HW 1 -- 2.39.2