diff options
| author | Andreas Färber | 2010-09-20 00:50:46 +0200 |
|---|---|---|
| committer | Blue Swirl | 2010-10-03 08:31:33 +0200 |
| commit | 5dc2eec957a67fc3250dc437175265636cd36c2a (patch) | |
| tree | b56525cbbda5026858ff25506efc6d17066c1a61 | |
| parent | Haiku doesn't have libm (diff) | |
| download | qemu-5dc2eec957a67fc3250dc437175265636cd36c2a.tar.gz qemu-5dc2eec957a67fc3250dc437175265636cd36c2a.tar.xz qemu-5dc2eec957a67fc3250dc437175265636cd36c2a.zip | |
nbd: Haiku has _IO() in its BSD compatibility layer
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
| -rw-r--r-- | nbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ #ifndef _WIN32 #include <sys/ioctl.h> #endif -#ifdef __sun__ +#if defined(__sun__) || defined(__HAIKU__) #include <sys/ioccom.h> #endif #include <ctype.h> |
