mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
453 B

  1. --- ./c++/etip.h.in.orig 2008-06-07 10:44:43.000000000 +0200
  2. +++ ./c++/etip.h.in 2008-06-07 10:46:43.000000000 +0200
  3. @@ -335,7 +335,7 @@
  4. };
  5. #if !((defined(__GNUG__) && defined(__EXCEPTIONS)) || defined(__SUNPRO_CC))
  6. -# include <iostream.h>
  7. +# include <iostream>
  8. extern "C" void exit(int);
  9. #endif
  10. @@ -354,7 +354,7 @@
  11. #endif
  12. #else
  13. if (e)
  14. - cerr << e->message << endl;
  15. + std::cerr << e->message << std::endl;
  16. exit(0);
  17. #endif
  18. }