aboutsummaryrefslogtreecommitdiff
path: root/hw/virtio-9p.h
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2011-01-23 16:21:20 +0000
committerBlue Swirl <blauwirbel@gmail.com>2011-01-23 16:21:20 +0000
commit64b85a8f2359ca3a995499afaf3c87d8e036e030 (patch)
treec8f8396df5fde32181b5e93f241b64c604cf5df5 /hw/virtio-9p.h
parentba76a84d2d420ccab7383bb60c61b96491f50b33 (diff)
downloadqemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.zip
qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.gz
qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.bz2
Delete useless 'extern' qualifiers for functions
'extern' qualifier is useless for function declarations. Delete them. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/virtio-9p.h')
-rw-r--r--hw/virtio-9p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/virtio-9p.h b/hw/virtio-9p.h
index 6c23319..2ae4ce7 100644
--- a/hw/virtio-9p.h
+++ b/hw/virtio-9p.h
@@ -495,8 +495,8 @@ typedef struct V9fsReadLinkState
V9fsString target;
} V9fsReadLinkState;
-extern size_t pdu_packunpack(void *addr, struct iovec *sg, int sg_count,
- size_t offset, size_t size, int pack);
+size_t pdu_packunpack(void *addr, struct iovec *sg, int sg_count,
+ size_t offset, size_t size, int pack);
static inline size_t do_pdu_unpack(void *dst, struct iovec *sg, int sg_count,
size_t offset, size_t size)