diff options
author | Peter Maydell | 2016-01-26 19:16:55 +0100 |
---|---|---|
committer | Peter Maydell | 2016-01-29 16:07:22 +0100 |
commit | 42f7a448dbc5d550b1d7f0ee6b622acccaed1d12 (patch) | |
tree | d8d6bebe5d5deb9d7f2efdb0b997c56745f6dcfc /crypto/aes.c | |
parent | migration: Clean up includes (diff) | |
download | qemu-42f7a448dbc5d550b1d7f0ee6b622acccaed1d12.tar.gz qemu-42f7a448dbc5d550b1d7f0ee6b622acccaed1d12.tar.xz qemu-42f7a448dbc5d550b1d7f0ee6b622acccaed1d12.zip |
crypto: Clean up includes
Clean up includes so that osdep.h is included first and headers
which it implies are not included manually.
This commit was created with scripts/clean-includes.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1453832250-766-3-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'crypto/aes.c')
-rw-r--r-- | crypto/aes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/aes.c b/crypto/aes.c index 244a388eba..3456eacd08 100644 --- a/crypto/aes.c +++ b/crypto/aes.c @@ -27,6 +27,7 @@ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "crypto/aes.h" |