diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2013-03-31 12:58:30 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2013-04-13 13:51:57 +0200 |
commit | 753d9b82c5a18182294980f4fc1081d7926aae83 (patch) | |
tree | 75204b38efc0f12fe40a05bbf8924f7e046cddeb /util | |
parent | 309b4de122c387e0f75624307fcd9896be7ec8fe (diff) |
aes: move aes.h from include/block to include/qemu
Move aes.h from include/block to include/qemu to show it can be reused
by other subsystems.
Cc: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'util')
-rw-r--r-- | util/aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/aes.c b/util/aes.c index 1da7bff1c9..54c7b98d39 100644 --- a/util/aes.c +++ b/util/aes.c @@ -28,7 +28,7 @@ * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "qemu-common.h" -#include "block/aes.h" +#include "qemu/aes.h" #ifndef NDEBUG #define NDEBUG |