From 2bf68b3c01909b046b5c566cc2cd950607ac9ba8 Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Wed, 14 Jul 2021 20:10:25 +0200 Subject: [PATCH] Remove unused macro --- main/snprintf.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/main/snprintf.c b/main/snprintf.c index 2bf871a9fb2..c52a09f1578 100644 --- a/main/snprintf.c +++ b/main/snprintf.c @@ -565,14 +565,6 @@ typedef struct buf_area buffy; } \ while ( (size_t)width > len ) -/* - * Prefix the character ch to the string str - * Increase length - * Set the has_prefix flag - */ -#define PREFIX( str, length, ch ) *--str = ch ; length++ ; has_prefix = true - - /* * Do format conversion placing the output in buffer */