diff options
Diffstat (limited to 'console.c')
| -rw-r--r-- | console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console.c b/console.c index 9778845b7d..e7c00eccb3 100644 --- a/console.c +++ b/console.c @@ -61,7 +61,7 @@ typedef struct QEMUFIFO { int count, wptr, rptr; } QEMUFIFO; -int qemu_fifo_write(QEMUFIFO *f, const uint8_t *buf, int len1) +static int qemu_fifo_write(QEMUFIFO *f, const uint8_t *buf, int len1) { int l, len; @@ -84,7 +84,7 @@ int qemu_fifo_write(QEMUFIFO *f, const uint8_t *buf, int len1) return len1; } -int qemu_fifo_read(QEMUFIFO *f, uint8_t *buf, int len1) +static int qemu_fifo_read(QEMUFIFO *f, uint8_t *buf, int len1) { int l, len; |