author | Rich Felker <dalias@aerifal.cx> | 2018年02月24日 11:38:53 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018年02月24日 11:38:53 -0500 |
commit | aaa29c26eed4a09625e61c6af31d16b1a4163fc3 (patch) | |
tree | 52756df3fe3fe96568f647a7313fd895a3e8d3c6 /src/stdio/getdelim.c | |
parent | 0fbe53ed3fc0a4f0e3c8c778b3a409e48ed8bea3 (diff) | |
download | musl-aaa29c26eed4a09625e61c6af31d16b1a4163fc3.tar.gz |
-rw-r--r-- | src/stdio/getdelim.c | 2 |
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; |