os/ossrv/genericopenlibs/cppstdlib/stl/test/unit/setjmp_header_test2.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericopenlibs/cppstdlib/stl/test/unit/setjmp_header_test2.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,15 @@
     1.4 +/* This test purpose is simply to check Standard header independancy that
     1.5 + * is to say that the header can be included alone without any previous
     1.6 + * include.
     1.7 + * Additionnaly, for C Standard headers that STLport expose, it can also be
     1.8 + * used to check that files included by those headers are compatible with
     1.9 + * pure C compilers.
    1.10 + */
    1.11 +
    1.12 +/*
    1.13 + * Sometimes, if native setjmp.h was included first, the setjmp functions
    1.14 + * situated in global namespace, not in vendor's std. This may confuse
    1.15 + * following csetjmp
    1.16 + */
    1.17 +#include <setjmp.h>
    1.18 +#include <csetjmp>