Changeset 3833
- Timestamp:
- Mar 2, 2014, 2:17:46 AM (11 years ago)
- Location:
- trunk/libc
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/include/fenv.h
r3765 r3833 98 98 #define FE_DFL_ENV (&__fe_dfl_env) 99 99 100 #define __fldcw(__cw) __asm __volatile("fldcw %0" : : "m" (__cw)) 101 #define __fldenv(__env) __asm __volatile("fldenv %0" : : "m" (__env)) 102 #define __fnclex() __asm __volatile("fnclex") 103 #define __fnstenv(__env) __asm __volatile("fnstenv %0" : "=m" (*(__env))) 104 #define __fnstcw(__cw) __asm __volatile("fnstcw %0" : "=m" (*(__cw))) 105 #define __fnstsw(__sw) __asm __volatile("fnstsw %0" : "=am" (*(__sw))) 106 #define __fwait() __asm __volatile("fwait") 107 #define __ldmxcsr(__csr) __asm __volatile("ldmxcsr %0" : : "m" (__csr)) 108 #define __stmxcsr(__csr) __asm __volatile("stmxcsr %0" : "=m" (*(__csr))) 100 #if defined(__GNUC__) 101 # define __fldcw(__cw) __asm __volatile("fldcw %0" : : "m" (__cw)) 102 # define __fldenv(__env) __asm __volatile("fldenv %0" : : "m" (__env)) 103 # define __fnclex() __asm __volatile("fnclex") 104 # define __fnstenv(__env) __asm __volatile("fnstenv %0" : "=m" (*(__env))) 105 # define __fnstcw(__cw) __asm __volatile("fnstcw %0" : "=m" (*(__cw))) 106 # define __fnstsw(__sw) __asm __volatile("fnstsw %0" : "=am" (*(__sw))) 107 # define __fwait() __asm __volatile("fwait") 108 # define __ldmxcsr(__csr) __asm __volatile("ldmxcsr %0" : : "m" (__csr)) 109 # define __stmxcsr(__csr) __asm __volatile("stmxcsr %0" : "=m" (*(__csr))) 110 111 #elif defined(__WATCOMC__) 112 # define __fldcw(__cw) __fldcw_(&(__cw)) 113 void __fldcw_(unsigned short *); 114 # pragma aux __fldcw = "fldcw [ecx]" parm [ecx]; 115 # define __fldenv(__env) __fldenv_(&(__env)) 116 void __fldenv_(fenv_t const *); 117 # pragma aux __fldenv_ = "fldenv [edx]" parm [edx] modify; /** @todo how to tell it we've modified memory? */ 118 void __fnclex(void); 119 # pragma aux __fnclex = "fnclex" 120 void __fnstenv(fenv_t *); 121 # pragma aux __fstenv = "fstenv [edx]" parm [edx]; 122 123 void __fnstcw(unsigned short *); 124 # pragma aux __fnstcw = "fnstcw [ecx]" parm [ecx] modify; /** @todo how to tell it we've modified memory? */ 125 126 void __fnstsw(unsigned short *); 127 # pragma aux __fnstsw = "fnstsw [eax]" parm [eax] modify;/** @todo how to tell it we've modified memory? */ 128 void __fwait(void); 129 # pragma aux __fwait = "fwait" 130 # define __ldmxcsr(__csr) __ldmxcsr_(&(__csr)) 131 void __ldmxcsr_(int *); 132 # pragma aux __ldmxcsr_ = "ldmxcsr [eax]" parm [eax]; 133 void __stmxcsr(int *); 134 # pragma aux __stmxcsr = "stmxcsr [eax]" parm [eax] modify; /** @todo how to tell it we've modified memory? */ 135 #else 136 # error "Port me" 137 #endif 109 138 110 139 static __inline int -
trunk/libc/include/spawn.h
r1706 r3833 27 27 28 28 #include <features.h> 29 #ifndef __ EMX__/* bird */29 #ifndef __KLIBC__ /* bird */ 30 30 #include <sched.h> 31 31 #endif /* bird */ … … 34 34 35 35 /* bird - start */ 36 #ifdef __ EMX__36 #ifdef __KLIBC__ 37 37 #undef __used /* BSD defines this in sys/cdefs.h since 5.3 */ 38 38 #ifndef __THROW -
trunk/libc/include/sys/cdefs.h
r3832 r3833 140 140 # endif 141 141 142 # ifdef __WATCOMC__ /* The foo(type __param[restrict]) isn't supported. */ 143 # undef __restrict_arr 144 # define __restrict_arr 145 # endif 146 142 147 /** @def __KLIBC_CC_NO_COMPLEX 143 148 * Indicates that the compiles does not implement _Complex. -
trunk/libc/src/glibc/include/libc-alias-glibc.h
r2240 r3833 44 44 #ifndef _LIBC_SYMBOLS_H /* hackityhack */ 45 45 # undef weak_alias 46 # if def __WANT_WEAK__46 # if defined(__WANT_WEAK__) && defined(__GNUC__) 47 47 # define weak_alias(name, aliasname) \ 48 48 extern __typeof(name) aliasname __attribute__((weak, alias(#name))); -
trunk/libc/src/glibc/intl/dcigettext.c
r1904 r3833 180 180 IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. 181 181 */ 182 #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __ DJGPP__182 #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __OS2__ || defined __DJGPP__ 183 183 /* Win32, OS/2, DOS */ 184 184 # define ISSLASH(C) ((C) == '/' || (C) == '\\') -
trunk/libc/src/glibc/intl/loadinfo.h
r1904 r3833 52 52 53 53 /* Separator in PATH like lists of pathnames. */ 54 #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __ DJGPP__54 #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __OS2__ || defined __DJGPP__ 55 55 /* Win32, OS/2, DOS */ 56 56 # define PATH_SEPARATOR ';' -
trunk/libc/src/glibc/intl/localecharset.c
r1841 r3833 63 63 # include <windows.h> 64 64 #endif 65 #if defined OS265 #if defined(OS2) || defined(__OS2__) 66 66 # define INCL_DOS 67 67 # include <os2.h> … … 74 74 #endif 75 75 76 #if defined _WIN32 || defined __WIN32__ || defined __EMX_ _ || defined __DJGPP__76 #if defined _WIN32 || defined __WIN32__ || defined __EMX_ || defined __OS2__ || defined __DJGPP__ 77 77 /* Win32, OS/2, DOS */ 78 78 # define ISSLASH(C) ((C) == '/' || (C) == '\\') -
trunk/libc/src/glibc/misc/error.c
r2259 r3833 26 26 27 27 #include <stdio.h> 28 #ifndef __ EMX__/* bird */28 #ifndef __KLIBC__ /* bird */ 29 29 #include <libintl.h> 30 30 #endif /* bird */ … … 103 103 # endif 104 104 105 #ifndef __ EMX__ /* bird */105 #ifndef __KLIBC__ /* bird */ 106 106 /* The calling program should define program_name and set it to the 107 107 name of the executing program. */ 108 108 extern char *program_name; 109 #else /* __ EMX__ *//* bird */109 #else /* __KLIBC__ */ /* bird */ 110 110 /* Use the BSD _getprogname() which the Innotek LIBC also implements. 111 111 Using this save the time used to maintain the two program_* vars … … 124 124 # define error __error 125 125 # define error_at_line __error_at_line 126 #endif /* __ EMX__ *//* bird */127 128 129 #ifndef __ EMX__ /* bird */126 #endif /* __KLIBC__ */ /* bird */ 127 128 129 #ifndef __KLIBC__ /* bird */ 130 130 # if HAVE_STRERROR_R || defined strerror_r 131 131 # define __strerror_r strerror_r … … 152 152 # endif /* HAVE_STRERROR */ 153 153 # endif /* HAVE_STRERROR_R || defined strerror_r */ 154 #endif /* !__ EMX__ */ /* bird */154 #endif /* !__KLIBC__ */ /* bird */ 155 155 #endif /* not _LIBC */ 156 156 -
trunk/libc/src/glibc/posix/regcomp.c
r3828 r3833 562 562 { 563 563 /* Set the first 128 bits. */ 564 # if defined(_MSC_VER) || defined(__WATCOMC__) /* bird */ 565 BITSET_WORD_MAX, BITSET_WORD_MAX, 566 # if ULONG_MAX > INT_MAX 567 BITSET_WORD_MAX, BITSET_WORD_MAX, 568 0, 0, 569 # endif 570 0, 0, 571 # else /* bird */ 564 572 [0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX 573 # endif /* bird */ 565 574 }; 566 575 #endif -
trunk/libc/src/glibc/posix/regex_internal.c
r3059 r3833 30 30 unsigned int context, 31 31 unsigned int hash) internal_function; 32 32 33 33 34 -
trunk/libc/src/glibc/posix/regex_internal.h
r3828 r3833 395 395 #ifdef RE_ENABLE_I18N 396 396 static void build_wcs_buffer (re_string_t *pstr) internal_function; 397 static int build_wcs_upper_buffer (re_string_t *pstr) internal_function; 397 /*static int build_wcs_upper_buffer (re_string_t *pstr) internal_function;*/ /* bird */ 398 static reg_errcode_t build_wcs_upper_buffer (re_string_t *pstr) internal_function; /* bird */ 398 399 #endif /* RE_ENABLE_I18N */ 399 400 static void build_upper_buffer (re_string_t *pstr) internal_function; … … 566 567 /* The string object corresponding to the input string. */ 567 568 re_string_t input; 568 #if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L )569 #if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L && !defined(__WATCOMC__)) 569 570 const re_dfa_t *const dfa; 570 571 #else -
trunk/libc/src/glibc/posix/regexec.c
r3828 r3833 635 635 int extra_nmatch; 636 636 int sb, ch; 637 #if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L )637 #if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L && !defined(__WATCOMC__)) 638 638 re_match_context_t mctx = { .dfa = dfa }; 639 639 #else … … 644 644 RE_TRANSLATE_TYPE t = preg->translate; 645 645 646 #if !(defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L ))646 #if !(defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L && !defined(__WATCOMC__))) 647 647 memset (&mctx, '\0', sizeof (re_match_context_t)); 648 648 mctx.dfa = dfa; … … 2899 2899 } 2900 2900 2901 #ifdef __GNUC__ 2901 2902 str_idx = path->next_idx ?: top_str; 2903 #else 2904 str_idx = path->next_idx ? path->next_idx : top_str; 2905 #endif 2902 2906 2903 2907 /* Temporary modify MCTX. */ -
trunk/libc/src/glibc/posix/spawn_faction_addclose.c
r1027 r3833 29 29 int fd) 30 30 { 31 #ifndef __ EMX__31 #ifndef __KLIBC__ /** @todo fix this*/ 32 32 int maxfd = __sysconf (_SC_OPEN_MAX); 33 33 #else -
trunk/libc/src/glibc/posix/spawn_faction_adddup2.c
r1027 r3833 29 29 int fd, int newfd) 30 30 { 31 #ifndef __ EMX__31 #ifndef __KLIBC__ /** @todo fix this*/ 32 32 int maxfd = __sysconf (_SC_OPEN_MAX); 33 33 #else -
trunk/libc/src/glibc/posix/spawn_faction_addopen.c
r1027 r3833 30 30 mode_t mode) 31 31 { 32 #ifndef __ EMX__32 #ifndef __KLIBC__ /** @todo fix this*/ 33 33 int maxfd = __sysconf (_SC_OPEN_MAX); 34 34 #else -
trunk/libc/src/glibc/string/argz-addsep.c
r1076 r3833 18 18 02111-1307 USA. */ 19 19 20 #ifdef __EMX__21 20 #include "libc-alias-glibc.h" 22 #endif23 21 #include <argz.h> 24 22 #include <errno.h> -
trunk/libc/src/glibc/string/argz-append.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <argz.h> 25 23 #include <string.h> -
trunk/libc/src/glibc/string/argz-count.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <argz.h> 25 23 #include <string.h> -
trunk/libc/src/glibc/string/argz-create.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 25 23 #include <argz.h> -
trunk/libc/src/glibc/string/argz-ctsep.c
r1076 r3833 18 18 02111-1307 USA. */ 19 19 20 #ifdef __EMX__21 20 #include "libc-alias-glibc.h" 22 #endif23 21 #include <argz.h> 24 22 #include <errno.h> -
trunk/libc/src/glibc/string/argz-delete.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <argz.h> 25 23 #include <string.h> -
trunk/libc/src/glibc/string/argz-extract.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <argz.h> 25 23 -
trunk/libc/src/glibc/string/argz-insert.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <argz.h> 25 23 #include <string.h> -
trunk/libc/src/glibc/string/argz-next.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <argz.h> 25 23 #include <string.h> -
trunk/libc/src/glibc/string/argz-replace.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <stdlib.h> 25 23 #include <string.h> -
trunk/libc/src/glibc/string/argz-stringify.c
r1076 r3833 19 19 02111-1307 USA. */ 20 20 21 #ifdef __EMX__22 21 #include "libc-alias-glibc.h" 23 #endif24 22 #include <argz.h> 25 23 #include <string.h> -
trunk/libc/src/glibc/string/strndup.c
r1076 r3833 17 17 02111-1307 USA. */ 18 18 19 #ifdef __EMX__20 19 #include "libc-alias-glibc.h" 21 #endif22 20 #ifdef HAVE_CONFIG_H 23 21 # include "config.h" -
trunk/libc/src/glibc/sysdeps/Makefile.kmk
r2710 r3833 46 46 47 47 libc_glibc_sysdeps_SOURCES.x86 = \ 48 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/rawmemchr.S \49 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/stpncpy.S \50 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/strchrnul.S \51 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_atan2l.c \52 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_atanhl.S \53 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp2l.S \54 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp10.S \55 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp10f.S \56 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp10l.S \57 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_fmodl.c \58 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log2.S \59 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log2f.S \60 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log2l.S \61 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log10l.S \62 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_logl.S \63 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_powl.S \64 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_remainderl.S \65 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_scalbl.S \66 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_sqrtl.c \67 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_asinhl.S \68 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_atanl.c \69 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_cexp.S \70 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_expm1l.S \71 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_llrintl.S \72 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_log1pl.S \73 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_logbl.c \74 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_lrintl.S \75 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_nearbyintl.S \76 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_remquol.S \77 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_rintl.c \78 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_significandl.c \79 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_sincos.S \80 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_sincosf.S \81 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_sincosl.S \82 \83 48 $(PATH_LIBC_SRC)/glibc/sysdeps/generic/cargf.c \ 84 49 $(PATH_LIBC_SRC)/glibc/sysdeps/generic/fpu_control.c \ … … 148 113 $(PATH_LIBC_SRC)/glibc/sysdeps/ieee754/ldbl-96/e_lgammal_r.c \ 149 114 115 if !defined(CFG_LIBC_USE_WATCOM) && !defined(CFG_LIBC_USE_MSVC) ## @todo later 116 libc_glibc_sysdeps_SOURCES.x86 = \ 117 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/rawmemchr.S \ 118 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/stpncpy.S \ 119 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/strchrnul.S \ 120 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_atan2l.c \ 121 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_atanhl.S \ 122 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp2l.S \ 123 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp10.S \ 124 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp10f.S \ 125 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_exp10l.S \ 126 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_fmodl.c \ 127 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log2.S \ 128 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log2f.S \ 129 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log2l.S \ 130 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_log10l.S \ 131 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_logl.S \ 132 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_powl.S \ 133 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_remainderl.S \ 134 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_scalbl.S \ 135 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/e_sqrtl.c \ 136 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_asinhl.S \ 137 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_atanl.c \ 138 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_cexp.S \ 139 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_expm1l.S \ 140 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_llrintl.S \ 141 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_log1pl.S \ 142 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_logbl.c \ 143 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_lrintl.S \ 144 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_nearbyintl.S \ 145 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_remquol.S \ 146 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_rintl.c \ 147 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_significandl.c \ 148 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_sincos.S \ 149 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_sincosf.S \ 150 $(PATH_LIBC_SRC)/glibc/sysdeps/i386/fpu/s_sincosl.S 151 endif 152 150 153 # configure the variants. */ 151 154 $(call LIBC_CONFIG_VARIANT_LIBS,libc_glibc_sysdeps) -
trunk/libc/src/glibc/sysdeps/i386/sysdep.h
r2150 r3833 111 111 #define mcount _mcount 112 112 #endif 113 #if def __EMX__113 #if defined(__KLIBC__) && (defined(_WIN32) || defined(__OS2__)) 114 114 #define mcount __mcount 115 115 #endif -
trunk/libc/src/glibc/sysdeps/ieee754/ldbl-96/e_j0l.c
r2150 r3833 75 75 #include "math.h" 76 76 #include "math_private.h" 77 #ifdef __WATCOMC__ 78 # undef huge 79 #endif 77 80 78 81 #ifdef __STDC__ -
trunk/libc/src/glibc/sysdeps/ieee754/ldbl-96/e_j1l.c
r2150 r3833 75 75 #include "math.h" 76 76 #include "math_private.h" 77 #ifdef __WATCOMC__ 78 #undef huge 79 #endif 77 80 78 81 #ifdef __STDC__ … … 87 90 static long double 88 91 #endif 89 92 huge = 1e4930L, 90 93 one = 1.0L, 91 94 invsqrtpi = 5.6418958354775628694807945156077258584405e-1L, -
trunk/libc/src/glibc/sysdeps/os2/sysdep.h
r2112 r3833 22 22 /* config.h candidates? */ 23 23 #undef NO_UNDERSCORES 24 #define HAVE_CPP_ASM_DEBUGINFO 25 #define HAVE_ASM_SET_DIRECTIVE 26 #define HAVE_ASM_WEAKEXT_DIRECTIVE 24 #ifdef __GNUC__ 25 # define HAVE_CPP_ASM_DEBUGINFO 26 # define HAVE_ASM_SET_DIRECTIVE 27 # define HAVE_ASM_WEAKEXT_DIRECTIVE 28 #endif 27 29 #ifndef __BOUNDED_POINTERS__ 28 # define __BOUNDED_POINTERS__ 030 # define __BOUNDED_POINTERS__ 0 29 31 #endif 30 32
Note:
See TracChangeset
for help on using the changeset viewer.