remove unused MIN macro from getdelim source file

This commit is contained in:
Rich Felker 2018-02-24 11:38:53 -05:00
parent 0fbe53ed3f
commit aaa29c26ee

View file

@ -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;