summaryrefslogtreecommitdiff
path: root/fsdev
diff options
context:
space:
mode:
authorGreg Kurz <groug@kaod.org>2016-10-17 14:13:58 +0200
committerGreg Kurz <groug@kaod.org>2016-10-17 14:13:58 +0200
commitbc70a5925f1928623b1fcc033f772daa0d0d271f (patch)
treeddf00da21b8af12a92de377b79c7a743034b93df /fsdev
parente95c9a493a5a8d6f969e86c9f19f80ffe6587e19 (diff)
downloadqemu-bc70a5925f1928623b1fcc033f772daa0d0d271f.tar.gz
9pfs: fsdev: drop useless extern annotation for functions
Signed-off-by: Greg Kurz <groug@kaod.org>
Diffstat (limited to 'fsdev')
-rw-r--r--fsdev/9p-marshal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fsdev/9p-marshal.h b/fsdev/9p-marshal.h
index 77f7fef326..c8823d878f 100644
--- a/fsdev/9p-marshal.h
+++ b/fsdev/9p-marshal.h
@@ -76,8 +76,8 @@ static inline void v9fs_string_init(V9fsString *str)
str->data = NULL;
str->size = 0;
}
-extern void v9fs_string_free(V9fsString *str);
-extern void v9fs_string_sprintf(V9fsString *str, const char *fmt, ...);
-extern void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs);
+void v9fs_string_free(V9fsString *str);
+void v9fs_string_sprintf(V9fsString *str, const char *fmt, ...);
+void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs);
#endif