diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 16:06:43 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 16:06:43 +0000 |
commit | d7e4036e317f75884513252acbf7eece54fc2ff5 (patch) | |
tree | b73f88a15325f14304f8dfe6fe7bbc96a3a55a1d /linux-user/syscall.c | |
parent | 225b437649f6c883a10c295b9b93285e8dfef571 (diff) |
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.c | 2 |
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" |