From 12e09f9f85ac48ff891adf92f3b2c9a5fea27273 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 4 Dec 2021 14:10:21 -0800 Subject: Chore(REMOVE): finished deprecation of old io functions. The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over. --- src/cmd/walk/walk.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/cmd/walk/walk.c') diff --git a/src/cmd/walk/walk.c b/src/cmd/walk/walk.c index c68d6e0..29a8600 100644 --- a/src/cmd/walk/walk.c +++ b/src/cmd/walk/walk.c @@ -3,8 +3,7 @@ static char buf[4*1024], *c = buf; /* should be greater or equal to PATH_MAX */ -static -void +static void flush(void) { *c = 0; @@ -12,9 +11,8 @@ flush(void) c = buf; } -static -int -print(void *data, char *rel, char *abs, io·Stat *info) +static int +print(void *data, char *rel, char *abs, struct stat *info) { copy: while (*abs && c < (arrend(buf)-2)) -- cgit v1.2.1