From 26ee1525e6f5857a763a023a2fbe729c0d380767 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sun, 2 Jun 2019 15:55:09 -0400 Subject: [PATCH] lib: Remove unused INT8_MAX and UINT8_MAX values We are not using these in the system, remove. Signed-off-by: Donald Sharp --- lib/zebra.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/zebra.h b/lib/zebra.h index 6adc9904e5..fe35e8c2ad 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -202,18 +202,12 @@ typedef unsigned char uint8_t; /* Some systems do not define UINT32_MAX, etc.. from inttypes.h * e.g. this makes life easier for FBSD 4.11 users. */ -#ifndef INT8_MAX -#define INT8_MAX (127) -#endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif -#ifndef UINT8_MAX -#define UINT8_MAX (255U) -#endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif -- 2.39.5