[CMAKE]
[reactos.git] / lib / 3rdparty / stlport / test / unit / cstdlib_header_test.cpp
1 /* This test purpose is simply to check Standard header independancy that
2 * is to say that the header can be included alone without any previous
3 * include.
4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
6 * pure C compilers.
7 */
8 #include <cstdlib>
9
10 //Just an additionnal compilation test for Borland that used to fail here.
11 #if defined (__BORLANDC__)
12 # include <process.h>
13 #endif