source:
patches/eglibc-2.17-qecvt-2.patch@
c66f200
Last change on this file since c66f200 was 6c613c4, checked in by , 11 years ago | |
---|---|
|
|
File size: 1.8 KB |
-
stdlib/bits/stdlib-ldbl.h
Submitted By: William Harrington kb0iic at cross-lfs dot org. Date: 2013-08-12 Initial Package Version: 2.17 Upstream Status: Applied to 2.18 Origin: http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4220c3ef773c0e7fff7c95ecd7cff69886fe4c0e Description: Fixes a mismatch of guards around qcvt and friends. Redone for eglibc-2.17 on 2013-08-12 diff -Naur eglibc-2.17.orig/stdlib/bits/stdlib-ldbl.h eglibc-2.17/stdlib/bits/stdlib-ldbl.h
old new 30 30 __LDBL_REDIR1_DECL (strtold_l, strtod_l) 31 31 #endif 32 32 33 #if defined __USE_SVID || defined __USE_XOPEN_EXTENDED 34 # ifdef __USE_MISC 33 #ifdef __USE_MISC 35 34 __LDBL_REDIR1_DECL (qecvt, ecvt) 36 35 __LDBL_REDIR1_DECL (qfcvt, fcvt) 37 36 __LDBL_REDIR1_DECL (qgcvt, gcvt) 38 37 __LDBL_REDIR1_DECL (qecvt_r, ecvt_r) 39 38 __LDBL_REDIR1_DECL (qfcvt_r, fcvt_r) 40 # endif41 39 #endif -
stdlib/stdlib.h
diff -Naur eglibc-2.17.orig/stdlib/stdlib.h eglibc-2.17/stdlib/stdlib.h
old new 819 819 extern char *gcvt (double __value, int __ndigit, char *__buf) 820 820 __THROW __nonnull ((3)) __wur; 821 821 822 #endif 822 823 823 # 824 #ifdef __USE_MISC 824 825 /* Long double versions of above functions. */ 825 826 extern char *qecvt (long double __value, int __ndigit, 826 827 int *__restrict __decpt, int *__restrict __sign) … … 849 850 int *__restrict __decpt, int *__restrict __sign, 850 851 char *__restrict __buf, size_t __len) 851 852 __THROW __nonnull ((3, 4, 5)); 852 # endif /* misc */ 853 #endif /* use MISC || use X/Open Unix */ 854 853 #endif /* misc */ 855 854 856 855 __BEGIN_NAMESPACE_STD 857 856 /* Return the length of the multibyte character
Note:
See TracBrowser
for help on using the repository browser.