// ----------------------------------------------------------------------
//
// cstdfstd.cc - Are <cstddef>'s symbols in std:: as they ought be?
//
// History:
//   08-Oct-1999  WEB  Initial draft
//   25-Apr-2001  WEB  s/<ISOcxxSyntax.hh>/"ISOcxx\/ISOcxxSyntax.hh"/
//
// ----------------------------------------------------------------------


#include "ISOcxx/ISOcxxSyntax.hh"

#include <cstddef>


// ----------------------------------------------------------------------
// Driver:
// ----------------------------------------------------------------------

int  main()  {

  if      ( sizeof( std::size_t    ) <= 0 )  return  1;
  else if ( sizeof( std::ptrdiff_t ) <= 0 )  return  2;
  else                                       return  0;

}  // main()
