From: Donald Sharp Date: Sun, 2 Jun 2019 19:55:09 +0000 (-0400) Subject: lib: Remove unused INT8_MAX and UINT8_MAX values X-Git-Tag: base_7.2~249^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=26ee1525e6f5857a763a023a2fbe729c0d380767;p=matthieu%2Ffrr.git lib: Remove unused INT8_MAX and UINT8_MAX values We are not using these in the system, remove. Signed-off-by: Donald Sharp --- 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