From 46e22bce880f004b227fd7e674a10253dc097365 Mon Sep 17 00:00:00 2001 From: Ray Gardner Date: Sun, 1 Dec 2024 15:56:27 -0700 Subject: [PATCH] Remove getline() / getdelim() declarations getdelim() is no longer used; getline() declaration not needed in toybox. Make adjustments. --- toys/pending/awk.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/toys/pending/awk.c b/toys/pending/awk.c index 33202a58..cfead8cc 100644 --- a/toys/pending/awk.c +++ b/toys/pending/awk.c @@ -302,9 +302,6 @@ struct zmap { #define NO_EXIT_STATUS (9999987) // value unlikely to appear in exit stmt -ssize_t getline(char **lineptr, size_t *n, FILE *stream); -ssize_t getdelim(char ** restrict lineptr, size_t * restrict n, int delimiter, FILE *stream); - //////////////////// -- 2.39.5