aboutsummaryrefslogtreecommitdiff
path: root/include/base/fs.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
commit12e09f9f85ac48ff891adf92f3b2c9a5fea27273 (patch)
tree60051793885e9978dadf6672ef85cdda216676a2 /include/base/fs.h
parentb80a3d28ce42be4fdec451f74620b10ee75219dc (diff)
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.
Diffstat (limited to 'include/base/fs.h')
-rw-r--r--include/base/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/base/fs.h b/include/base/fs.h
index 6852a84..bb7ffdc 100644
--- a/include/base/fs.h
+++ b/include/base/fs.h
@@ -19,7 +19,7 @@ struct fs·Walker
fs·History *hist;
struct {
void *data;
- int (*func)(void *data, char *relp, char *absp, io·Stat* info);
+ int (*func)(void *data, char *relp, char *absp, struct stat *info);
};
char *base, *end, path[4096];
};