// ---------------------------------------------------------------------- // // cstdfstd.cc - Are 's symbols in std:: as they ought be? // // History: // 08-Oct-1999 WEB Initial draft // 25-Apr-2001 WEB s//"ISOcxx\/ISOcxxSyntax.hh"/ // // ---------------------------------------------------------------------- #include "ISOcxx/ISOcxxSyntax.hh" #include // ---------------------------------------------------------------------- // Driver: // ---------------------------------------------------------------------- int main() { if ( sizeof( std::size_t ) <= 0 ) return 1; else if ( sizeof( std::ptrdiff_t ) <= 0 ) return 2; else return 0; } // main()