This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 2/2] don't compile gcvt if posix < 200112


From: uchan-nos <uchan0@gmail.com>

---
 newlib/libc/stdlib/efgcvt.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/newlib/libc/stdlib/efgcvt.c b/newlib/libc/stdlib/efgcvt.c
index 9314bf361..c1684f35a 100644
--- a/newlib/libc/stdlib/efgcvt.c
+++ b/newlib/libc/stdlib/efgcvt.c
@@ -102,6 +102,8 @@ Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
 #include <stdlib.h>
 #include "local.h"
 
+#if __XSI_VISIBLE >= 4 && __POSIX_VISIBLE < 200112
+
 char *
 fcvt (double d,
 	int ndigit,
@@ -163,3 +165,5 @@ gcvt (double d,
   }
   return (_gcvt (_REENT, d, ndigit, buf, 'g', 0) ? tbuf : 0);
 }
+
+#endif // __XSI_VISIBLE >= 4 && __POSIX_VISIBLE < 200112
-- 
2.17.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]