diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-26 15:37:46 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-26 15:37:46 +0000 |
commit | 71c2fd5cdfa1106e109c2554d511bdb3bcdccb05 (patch) | |
tree | 2420c8f78c27dc309a623760bf7f00955e3ce770 /vl.h | |
parent | df5cf721605327427e4c033f75fd0875486c109f (diff) |
Define ENOMEDIUM to match ENODEV if it isn't available.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2357 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.h')
-rw-r--r-- | vl.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -48,6 +48,9 @@ #ifdef __sun__ #define ENOMEDIUM 4097 #endif +#ifndef ENOMEDIUM +#define ENOMEDIUM ENODEV +#endif #ifdef _WIN32 #include <windows.h> |