Home | History | Annotate | Download | only in unit

Lines Matching refs:errno

2 //those headers contains a errno macro definition without the underlying value
7 #include <errno.h>
8 #include <errno.h> // not typo, check errno def/undef/redef
32 //Using ERANGE improve the test as it means that the native errno.h file has really
34 errno = ERANGE;
36 CPPUNIT_ASSERT( errno == ERANGE );
37 errno = 0;
39 /* Note: in common, you can't write ::errno or std::errno,
40 * due to errno in most cases is just a macro, that frequently
41 * (in MT environment errno is a per-thread value) expand to something like
48 if ( ::errno != 0 ) {
51 if ( std::errno != 0 ) {