From 2880bc32b84831032d561f850b13b9f4f03d910e Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Mon, 27 Jul 2009 16:13:22 +0200 Subject: define ENOTSUP the same that the other errors aliguori: ENOTSUP is not 4096 universally, only on OpenBSD Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- qemu-common.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'qemu-common.h') diff --git a/qemu-common.h b/qemu-common.h index 3cf7f4e..5d7ffeb 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -38,6 +38,9 @@ #ifndef ENOMEDIUM #define ENOMEDIUM ENODEV #endif +#if !defined(ENOTSUP) && defined(__OpenBSD__) +#define ENOTSUP 4096 +#endif #ifndef CONFIG_IOVEC #define CONFIG_IOVEC @@ -52,11 +55,9 @@ struct iovec { #ifdef _WIN32 #define fsync _commit #define lseek _lseeki64 -#define ENOTSUP 4096 extern int qemu_ftruncate64(int, int64_t); #define ftruncate qemu_ftruncate64 - static inline char *realpath(const char *path, char *resolved_path) { _fullpath(resolved_path, path, _MAX_PATH); -- cgit v1.1