diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-18 17:33:52 +0000 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-02-02 13:57:31 +0100 |
commit | 6086a565b0efe3eb66c5bf65a715a2c84425e47f (patch) | |
tree | 19a6a059b3c46f74dca253ce7b5a3d9a07ce143d /audio/ossaudio.c | |
parent | 10ae9d76388e3f4a31f6a1475b5e2d1f28404a10 (diff) | |
download | qemu-6086a565b0efe3eb66c5bf65a715a2c84425e47f.zip qemu-6086a565b0efe3eb66c5bf65a715a2c84425e47f.tar.gz qemu-6086a565b0efe3eb66c5bf65a715a2c84425e47f.tar.bz2 |
audio: 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: 1453138432-8324-1-git-send-email-peter.maydell@linaro.org
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'audio/ossaudio.c')
-rw-r--r-- | audio/ossaudio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/ossaudio.c b/audio/ossaudio.c index 7dbe333..349e9dd 100644 --- a/audio/ossaudio.c +++ b/audio/ossaudio.c @@ -21,9 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#include <stdlib.h> +#include "qemu/osdep.h" #include <sys/mman.h> -#include <sys/types.h> #include <sys/ioctl.h> #include <sys/soundcard.h> #include "qemu-common.h" |