summaryrefslogtreecommitdiff
path: root/linux-user/syscall.c
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-23 16:06:43 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-23 16:06:43 +0000
commitd7e4036e317f75884513252acbf7eece54fc2ff5 (patch)
treeb73f88a15325f14304f8dfe6fe7bbc96a3a55a1d /linux-user/syscall.c
parent225b437649f6c883a10c295b9b93285e8dfef571 (diff)
downloadqemu-d7e4036e317f75884513252acbf7eece54fc2ff5.tar.gz
Fix build failure with old kernel headers (loop.h is incompatible with
glibc headers). git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4543 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r--linux-user/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 5b88e621a0..cb4cf11e98 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -68,7 +68,7 @@
#include <linux/soundcard.h>
#include <linux/dirent.h>
#include <linux/kd.h>
-#include <linux/loop.h>
+#include "linux_loop.h"
#include "qemu.h"