[xml] [PATCH] fix reference to STDOUT_FILENO on MSVC
- From: Tay Ray Chuan <rctay89 gmail com>
- To: xml gnome org
- Cc: rctay89 gmail com
- Subject: [xml] [PATCH] fix reference to STDOUT_FILENO on MSVC
- Date: Mon, 2 Jan 2012 15:49:31 +0800
The Microsoft Visual C++ compiler doesn't have unistd.h and thus
STDOUT_FILENO is undefined. Define it using stdio.h functions.
---
testC14N.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/testC14N.c b/testC14N.c
index dc1a9a6..f735a29 100644
--- a/testC14N.c
+++ b/testC14N.c
@@ -13,7 +13,9 @@
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
-#endif
+#else
+#define STDOUT_FILENO fileno(stdout)
+#endif /* HAVE_UNISTD_H */
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
--
1.7.7.1.msysgit.0.dirty
[Date Prev][
Date Next] [Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]