diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-02 21:55:09 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-02 22:07:48 +0200 |
commit | 26ee1525e6f5857a763a023a2fbe729c0d380767 (patch) | |
tree | 57c702e490eae54d757c3a31438f3d843479191e /lib/zebra.h | |
parent | lib: Move ZEBRA_HEADER_MARKER to header it belongs in (diff) | |
download | frr-26ee1525e6f5857a763a023a2fbe729c0d380767.tar.xz frr-26ee1525e6f5857a763a023a2fbe729c0d380767.zip |
lib: Remove unused INT8_MAX and UINT8_MAX values
We are not using these in the system, remove.
Signed-off-by: Donald Sharp <sharpd2cumulusnetworks.com>
Diffstat (limited to 'lib/zebra.h')
-rw-r--r-- | lib/zebra.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/zebra.h b/lib/zebra.h index 6adc9904e..fe35e8c2a 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 |