diff options
author | Marc-André Lureau | 2017-01-26 14:19:46 +0100 |
---|---|---|
committer | Marc-André Lureau | 2017-06-02 09:33:52 +0200 |
commit | 8228e353d8906bf43399ca0ef28446c5c48bb686 (patch) | |
tree | 3dd8d23d8e5f0a690062e7f34b8fa5b169c79d55 /chardev/char-win-stdio.c | |
parent | Remove/replace sysemu/char.h inclusion (diff) | |
download | qemu-8228e353d8906bf43399ca0ef28446c5c48bb686.tar.gz qemu-8228e353d8906bf43399ca0ef28446c5c48bb686.tar.xz qemu-8228e353d8906bf43399ca0ef28446c5c48bb686.zip |
chardev: move headers to include/chardev
So they are all in one place. The following patch will move serial &
parallel declarations to the respective headers.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'chardev/char-win-stdio.c')
-rw-r--r-- | chardev/char-win-stdio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chardev/char-win-stdio.c b/chardev/char-win-stdio.c index eb44afc17a..efcf7827eb 100644 --- a/chardev/char-win-stdio.c +++ b/chardev/char-win-stdio.c @@ -23,8 +23,8 @@ */ #include "qemu/osdep.h" #include "qapi/error.h" -#include "char-win.h" -#include "char-win-stdio.h" +#include "chardev/char-win.h" +#include "chardev/char-win-stdio.h" typedef struct { Chardev parent; |