changeset 28:2756744a1944

Keep gcc 3.2 happy by using includes without the .h
author pkienzle
date Sat, 02 Nov 2002 10:40:31 +0000
parents e6818dcad4c6
children 7a1ccf3a8ccc
files jpgread.cc jpgwrite.cc
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/jpgread.cc
+++ b/jpgread.cc
@@ -10,7 +10,7 @@
  //
 
 #include <octave/oct.h>
-#include <iostream.h>
+#include <iostream>
 
 /*
  * Simple jpeg reading MEX-file. 
--- a/jpgwrite.cc
+++ b/jpgwrite.cc
@@ -9,7 +9,7 @@
  //                                                       
 
 #include <octave/oct.h>
-#include <iostream.h>
+#include <iostream>
 
 #ifdef __cplusplus
 extern "C" {