Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
5 * This material is provided "as is", with absolutely no warranty expressed
6 * or implied. Any use is at your own risk.
8 * Permission to use or copy this software for any purpose is hereby granted
9 * without fee, provided the above notices are retained on all copies.
10 * Permission to modify the code and to distribute modified code is granted,
11 * provided the above notices are retained, and a notice that the code was
12 * modified is included with the above copyright notice.
16 #ifndef _STLP_INTERNAL_CSETJMP
17 #define _STLP_INTERNAL_CSETJMP
19 // if the macro is on, the header is already there
21 # if defined (_STLP_USE_NEW_C_HEADERS)
22 # include _STLP_NATIVE_CPP_C_HEADER(csetjmp)
24 # define _STLP_NATIVE_SETJMP_H_INCLUDED
25 # include _STLP_NATIVE_C_HEADER(setjmp.h)
29 #if defined (_STLP_IMPORT_VENDOR_CSTD)
31 # if defined (__BORLANDC__) && defined (_STLP_USE_NEW_C_HEADERS)
32 /* For Borland, even if stdjmp.h is included symbols won't be in global namespace
33 * so we need to reach them in vendor namespace:
35 # undef _STLP_NATIVE_SETJMP_H_INCLUDED
39 # if !defined (_STLP_NATIVE_SETJMP_H_INCLUDED)
40 using _STLP_VENDOR_CSTD::jmp_buf;
42 // if setjmp.h was included first, this is in global namespace, not in
43 // vendor's std. - 2005-08-04, ptr
46 # if !defined (_STLP_NO_CSTD_FUNCTION_IMPORTS)
47 # if !defined (setjmp)
48 # if !defined (__MSL__) || ((__MSL__ > 0x7001) && (__MSL__ < 0x8000))
49 # ifndef _STLP_NATIVE_SETJMP_H_INCLUDED
50 using _STLP_VENDOR_CSTD::setjmp;
56 # if !defined (_STLP_NATIVE_SETJMP_H_INCLUDED)
57 using _STLP_VENDOR_CSTD::longjmp;
63 #endif /* _STLP_IMPORT_VENDOR_CSTD */