Преглед изворни кода

remove unused MIN macro from getdelim source file

Rich Felker пре 7 година
родитељ
комит
aaa29c26ee
1 измењених фајлова са 0 додато и 2 уклоњено
  1. 0 2
      src/stdio/getdelim.c

+ 0 - 2
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;