From 50e514be986e4d5b136879d1221b721b17493a78 Mon Sep 17 00:00:00 2001 From: rsc Date: Wed, 6 Sep 2006 18:43:45 +0000 Subject: fd_* => file_* --- defs.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'defs.h') diff --git a/defs.h b/defs.h index 1491a8e..e05782d 100644 --- a/defs.h +++ b/defs.h @@ -92,14 +92,14 @@ int pipe_read(struct pipe*, char*, int); // fd.c struct stat; -void fd_init(void); -int fd_ualloc(void); -struct file* fd_alloc(void); -void fd_close(struct file*); -int fd_read(struct file*, char*, int n); -int fd_write(struct file*, char*, int n); -int fd_stat(struct file*, struct stat*); -void fd_incref(struct file*); +void fileinit(void); +int fdalloc(void); +struct file* filealloc(void); +void fileclose(struct file*); +int fileread(struct file*, char*, int n); +int filewrite(struct file*, char*, int n); +int filestat(struct file*, struct stat*); +void fileincref(struct file*); // ide.c void ide_init(void); -- cgit v1.2.3