diff options
| author | rsc <rsc> | 2006-09-06 17:27:19 +0000 |
|---|---|---|
| committer | rsc <rsc> | 2006-09-06 17:27:19 +0000 |
| commit | 9e9bcaf143bf8507e947f9934371744c3d50a8ea (patch) | |
| tree | b63a03929569f34ade9a940ef1416586346b8d30 /dev.h | |
| parent | 03b6376f56074cd1dcbb1b35639e303c3a8a0181 (diff) | |
| download | xv6-labs-2022-9e9bcaf143bf8507e947f9934371744c3d50a8ea.tar.xz xv6-labs-2022-9e9bcaf143bf8507e947f9934371744c3d50a8ea.zip | |
standardize various * conventions
Diffstat (limited to 'dev.h')
| -rw-r--r-- | dev.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ struct devsw { - int (*d_open)(char *, int); - int (*d_read)(int, char *, int); - int (*d_write)(int, char *, int); + int (*d_open)(char*, int); + int (*d_read)(int, char*, int); + int (*d_write)(int, char*, int); int (*d_close)(int); }; |
