summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-02-24 11:38:53 -0500
committerRich Felker <dalias@aerifal.cx>2018-02-24 11:38:53 -0500
commitaaa29c26eed4a09625e61c6af31d16b1a4163fc3 (patch)
tree52756df3fe3fe96568f647a7313fd895a3e8d3c6 /src
parent0fbe53ed3fc0a4f0e3c8c778b3a409e48ed8bea3 (diff)
downloadmusl-aaa29c26eed4a09625e61c6af31d16b1a4163fc3.tar.gz
remove unused MIN macro from getdelim source file
Diffstat (limited to 'src')
-rw-r--r--src/stdio/getdelim.c2
1 files changed, 0 insertions, 2 deletions
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 <inttypes.h>
#include <errno.h>
-#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;