Replaced <c*> headers with <*.h>
authorIngo Ruhnke <grumbel@gmx.de>
Wed, 18 Nov 2009 01:37:05 +0000 (01:37 +0000)
committerIngo Ruhnke <grumbel@gmx.de>
Wed, 18 Nov 2009 01:37:05 +0000 (01:37 +0000)
SVN-Revision: 6018

13 files changed:
src/lisp/lexer.cpp
src/math/random_generator.cpp
src/math/vector.cpp
src/object/camera.cpp
src/object/cloud_particle_system.cpp
src/object/ghost_particle_system.cpp
src/object/particlesystem.cpp
src/object/player.cpp
src/object/snow_particle_system.cpp
src/sprite/sprite.cpp
src/video/font.cpp
src/video/gl/gl_lightmap.cpp
src/worldmap/worldmap.cpp

index 690d571..23e95cd 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "lisp/lexer.hpp"
 
-#include <cstring>
+#include <string.h>
 #include <sstream>
 #include <stdexcept>
 #include <stdio.h>
index f1f846b..7a1c6d1 100644 (file)
@@ -34,7 +34,7 @@
 // Transliterated into C++ Allen King 060417, from sources on
 //          http://www.jbox.dk/sanos/source/lib/random.c.html
 
-#include <cassert>
+#include <assert.h>
 #include <stdexcept>
 #include <stdio.h>
 #include <time.h>
index 687ed84..df0ee6c 100644 (file)
@@ -14,7 +14,7 @@
 //  You should have received a copy of the GNU General Public License
 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <cmath>
+#include <math.h>
 
 #include "math/vector.hpp"
 
index aea8685..48cd7a3 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "object/camera.hpp"
 
-#include <cmath>
+#include <math.h>
 #include <physfs.h>
 
 #include "util/reader.hpp"
index bde0d11..0e2659e 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "object/cloud_particle_system.hpp"
 
-#include <cmath>
+#include <math.h>
 
 #include "math/random_generator.hpp"
 #include "supertux/main.hpp"
index b36e3d1..4b493a4 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "object/ghost_particle_system.hpp"
 
-#include <cmath>
+#include <math.h>
 
 #include "math/random_generator.hpp"
 #include "supertux/main.hpp"
index 3289f6d..e6e18ca 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "object/particlesystem.hpp"
 
-#include <cmath>
+#include <math.h>
 
 #include "math/random_generator.hpp"
 #include "supertux/main.hpp"
index b056ecf..1de4610 100644 (file)
@@ -35,7 +35,7 @@
 #include "supertux/tile.hpp"
 #include "trigger/climbable.hpp"
 
-#include <cmath>
+#include <math.h>
 
 //#define SWIMMING
 
index a563fa5..406ca08 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "object/snow_particle_system.hpp"
 
-#include <cmath>
+#include <math.h>
 
 #include "math/random_generator.hpp"
 #include "supertux/main.hpp"
index d399504..d497bf7 100644 (file)
@@ -14,7 +14,7 @@
 //  You should have received a copy of the GNU General Public License
 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <cmath>
+#include <math.h>
 
 #include "sprite/sprite.hpp"
 #include "supertux/timer.hpp"
index 05a8286..cf0b8b3 100644 (file)
@@ -17,8 +17,8 @@
 
 #include <config.h>
 
-#include <cstdlib>
-#include <cstring>
+#include <stdlib.h>
+#include <string.h>
 #include <stdexcept>
 #include <SDL_image.h>
 #include <physfs.h>
index e76012c..fe77db3 100644 (file)
@@ -18,7 +18,7 @@
 
 #include <SDL_image.h>
 #include <algorithm>
-#include <cassert>
+#include <assert.h>
 #include <functional>
 #include <iomanip>
 #include <iostream>
index 72217a4..0b35c03 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <config.h>
 
-#include <cassert>
+#include <assert.h>
 #include <fstream>
 #include <iostream>
 #include <physfs.h>