diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-08-11 06:23:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-08-11 06:23:10 +0000 |
commit | 16824dd3bbb4d43b141d300c76afbdd0c30fa7b9 (patch) | |
tree | 08f2b84878ea46e749b47e3b2953507245ad5384 /sys/lib/libsa/stand.h | |
parent | 678b21869f24e6ddc3a341fad1a87c353c5464ca (diff) |
ansification and knf and protos
Diffstat (limited to 'sys/lib/libsa/stand.h')
-rw-r--r-- | sys/lib/libsa/stand.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h index a36ec9653db..725a02abd77 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.41 2003/06/02 23:28:09 millert Exp $ */ +/* $OpenBSD: stand.h,v 1.42 2003/08/11 06:23:09 deraadt Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -63,9 +63,9 @@ struct fs_ops { int (*open)(char *path, struct open_file *f); int (*close)(struct open_file *f); int (*read)(struct open_file *f, void *buf, - size_t size, size_t *resid); + size_t size, size_t *resid); int (*write)(struct open_file *f, void *buf, - size_t size, size_t *resid); + size_t size, size_t *resid); off_t (*seek)(struct open_file *f, off_t offset, int where); int (*stat)(struct open_file *f, struct stat *sb); int (*readdir)(struct open_file *f, char *); @@ -191,6 +191,8 @@ u_int sleep(u_int); void usleep(u_int); char *ctime(const time_t *); +int ioctl(int, u_long, char *); + void putchar(int); int getchar(void); |