sl@0
|
1 |
/* This test purpose is simply to check Standard header independancy that
|
sl@0
|
2 |
* is to say that the header can be included alone without any previous
|
sl@0
|
3 |
* include.
|
sl@0
|
4 |
* Additionnaly, for C Standard headers that STLport expose, it can also be
|
sl@0
|
5 |
* used to check that files included by those headers are compatible with
|
sl@0
|
6 |
* pure C compilers.
|
sl@0
|
7 |
*/
|
sl@0
|
8 |
|
sl@0
|
9 |
//Including this fle makes the test STLport specific but this is the only way to check
|
sl@0
|
10 |
//compiler config:
|
sl@0
|
11 |
#include <stl/config/features.h>
|
sl@0
|
12 |
|
sl@0
|
13 |
#if !defined (_STLP_USE_NO_IOSTREAMS)
|
sl@0
|
14 |
# include <ios>
|
sl@0
|
15 |
#endif
|