diff options
author | Stefan Weil | 2010-03-02 22:38:00 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2010-03-03 12:47:53 +0100 |
commit | 78728c92a4137a96f1d0c49496d02dd9aa9d71b6 (patch) | |
tree | 08c3da35d8fd3f878e3ae63ef56a47fcef6cfccc /hw/eepro100.c | |
parent | eepro100: Remove C++ comments (diff) | |
download | qemu-78728c92a4137a96f1d0c49496d02dd9aa9d71b6.tar.gz qemu-78728c92a4137a96f1d0c49496d02dd9aa9d71b6.tar.xz qemu-78728c92a4137a96f1d0c49496d02dd9aa9d71b6.zip |
eepro100: Keep includes sorted
I always try to keep standard includes sorted
and add a comment why they are there (so they
can be removed when they are no longer needed).
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/eepro100.c')
-rw-r--r-- | hw/eepro100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/eepro100.c b/hw/eepro100.c index 43a9060254..45ab497cab 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -41,8 +41,8 @@ * * Wake-on-LAN is not implemented. */ +#include <stdbool.h> /* bool */ #include <stddef.h> /* offsetof */ -#include <stdbool.h> #include "hw.h" #include "pci.h" #include "net.h" |