_cprolog.h 804 B

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