From: Rich Felker Date: Sat, 24 Feb 2018 16:38:53 +0000 (-0500) Subject: remove unused MIN macro from getdelim source file X-Git-Tag: v1.1.20~147 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=aaa29c26eed4a09625e61c6af31d16b1a4163fc3;p=oweals%2Fmusl.git remove unused MIN macro from getdelim source file --- diff --git a/src/stdio/getdelim.c b/src/stdio/getdelim.c index 1ccd8029..d4b23882 100644 --- a/src/stdio/getdelim.c +++ b/src/stdio/getdelim.c @@ -3,8 +3,6 @@ #include #include -#define MIN(a,b) ((a)<(b) ? (a) : (b)) - ssize_t getdelim(char **restrict s, size_t *restrict n, int delim, FILE *restrict f) { char *tmp;