Changeset 20362 in vbox for trunk/include/iprt/nocrt
- Timestamp:
- Jun 8, 2009 12:14:32 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48285
- Location:
- trunk/include/iprt/nocrt
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/amd64/fenv.h
r8245 r20362 98 98 #define _SSE_EMASK_SHIFT 7 99 99 100 __BEGIN_DECLS100 RT_BEGIN_DECLS 101 101 102 102 /* Default floating-point environment */ … … 221 221 } 222 222 223 __END_DECLS223 RT_END_DECLS 224 224 225 225 #ifndef RT_WITHOUT_NOCRT_WRAPPERS -
trunk/include/iprt/nocrt/math.h
r8245 r20362 210 210 * as __pure2. In C99, FENV_ACCESS affects the purity of these functions. 211 211 */ 212 __BEGIN_DECLS212 RT_BEGIN_DECLS 213 213 /* 214 214 * ANSI/POSIX … … 559 559 long double RT_NOCRT(gammal)(long double); 560 560 #endif 561 __END_DECLS561 RT_END_DECLS 562 562 563 563 -
trunk/include/iprt/nocrt/setjmp.h
r8245 r20362 33 33 #include <iprt/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 #ifdef RT_ARCH_AMD64 … … 50 50 #endif 51 51 52 __END_DECLS52 RT_END_DECLS 53 53 54 54 #endif -
trunk/include/iprt/nocrt/stdlib.h
r8245 r20362 33 33 #include <iprt/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 38 __END_DECLS38 RT_END_DECLS 39 39 40 40 #endif -
trunk/include/iprt/nocrt/string.h
r10137 r20362 33 33 #include <iprt/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 void * RT_NOCRT(memchr)(const void *pv, int ch, size_t cb); … … 80 80 #endif 81 81 82 __END_DECLS82 RT_END_DECLS 83 83 84 84 #endif -
trunk/include/iprt/nocrt/x86/fenv.h
r8245 r20362 121 121 #endif 122 122 123 __BEGIN_DECLS123 RT_BEGIN_DECLS 124 124 125 125 /* Default floating-point environment */ … … 260 260 } 261 261 262 __END_DECLS262 RT_END_DECLS 263 263 264 264 #ifndef RT_WIHTOUT_NOCRT_WRAPPERS … … 273 273 # define feenableexcept RT_NOCRT(feenableexcept) 274 274 # define fedisableexcept RT_NOCRT(fedisableexcept) 275 #endif 275 #endif 276 276 277 277 #endif /* !__iprt_nocrt_x86_fenv_h__ */
Note:
See TracChangeset
for help on using the changeset viewer.