reactos/include/c++/stlport/stl/_cprolog.h
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

25 lines
804 B
C

/* NOTE : this header has no guards and is MEANT for multiple inclusion!
* If you are using "header protection" option with your compiler,
* please also find #pragma which disables it and put it here, to
* allow reentrancy of this header.
*/
#ifdef std
# undef std /* We undef "std" on entry , as STLport headers may include native ones. */
#endif
#ifdef _STLP_PROLOG_HEADER_INCLUDED
# error STlport prolog header can not be reincluded as long as epilog has not be included.
#endif
#define _STLP_PROLOG_HEADER_INCLUDED
#ifndef _STLP_FEATURES_H
# include <stl/config/features.h>
#endif
/* If the platform provides any specific prolog actions,
* like #pragmas, do include platform-specific prolog file */
#if defined (_STLP_HAS_SPECIFIC_PROLOG_EPILOG)
# include <stl/config/_prolog.h>
#endif