diff options
| author | rsc <rsc> | 2007-08-08 09:32:39 +0000 |
|---|---|---|
| committer | rsc <rsc> | 2007-08-08 09:32:39 +0000 |
| commit | c664dd5d23d50a6baee02d0ab8e921db51178f61 (patch) | |
| tree | 672020206787ea086b549f2b2c1daee7af4ba4e7 /console.c | |
| parent | 61dff66b35bee1ba6c58271a6864d905e2c0d1ab (diff) | |
| download | xv6-labs-2022-c664dd5d23d50a6baee02d0ab8e921db51178f61.tar.xz xv6-labs-2022-c664dd5d23d50a6baee02d0ab8e921db51178f61.zip | |
missing void
Diffstat (limited to 'console.c')
| -rw-r--r-- | console.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -323,7 +323,7 @@ struct spinlock kbd_lock; static uint shift; void -kbd_intr() +kbd_intr(void) { uint st, data, c; @@ -418,7 +418,7 @@ console_read(int minor, char *dst, int n) } void -console_init() +console_init(void) { initlock(&console_lock, "console"); initlock(&kbd_lock, "kbd"); |
