Convert cnames back to .h
authorTim Goya <tuxdev103@gmail.com>
Sat, 3 Mar 2007 03:38:07 +0000 (03:38 +0000)
committerTim Goya <tuxdev103@gmail.com>
Sat, 3 Mar 2007 03:38:07 +0000 (03:38 +0000)
SVN-Revision: 4908

21 files changed:
src/addon_manager.cpp
src/collision.cpp
src/collision.hpp
src/collision_hit.hpp
src/game_session.cpp
src/gameconfig.cpp
src/level.cpp
src/log.hpp
src/main.cpp
src/mainloop.cpp
src/player_status.cpp
src/random_generator.cpp
src/refcounter.hpp
src/sector.cpp
src/statistics.cpp
src/tile.cpp
src/tile_manager.cpp
src/tile_manager.hpp
src/timer.cpp
src/title.cpp
src/world.cpp

index a7f19c5..1459983 100644 (file)
@@ -23,7 +23,7 @@
 #include <list>
 #include <physfs.h>
 #include <sys/stat.h>
-#include <cstdio>
+#include <stdio.h>
 #include "addon_manager.hpp"
 #include "config.h"
 #include "log.hpp"
index 6e98940..f96fdea 100644 (file)
@@ -23,9 +23,9 @@
 
 #include <algorithm>
 #include <iostream>
-#include <cstdio>
-#include <cfloat>
-#include <cmath>
+#include <stdio.h>
+#include <float.h>
+#include <math.h>
 #include "math/vector.hpp"
 #include "math/aatriangle.hpp"
 #include "math/rect.hpp"
index fd90a9a..ba6b6f8 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef __COLLISION_H__
 #define __COLLISION_H__
 
-#include <cfloat>
+#include <float.h>
 #include "collision_hit.hpp"
 #include <limits>
 
index 72531f1..0287903 100644 (file)
@@ -19,8 +19,8 @@
 #ifndef SUPERTUX_COLLISION_HIT_H
 #define SUPERTUX_COLLISION_HIT_H
 
-#include <cfloat>
-#include <cmath>
+#include <float.h>
+#include <math.h>
 #include "math/vector.hpp"
 
 /**
index 014dc2d..21c0f54 100644 (file)
 
 #include <fstream>
 #include <sstream>
-#include <cassert>
-#include <cstdio>
-#include <cstdlib>
-#include <cmath>
-#include <cstring>
-#include <cerrno>
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <math.h>
+#include <string.h>
+#include <errno.h>
 #include <unistd.h>
-#include <ctime>
+#include <time.h>
 #include <stdexcept>
 
 #include <SDL.h>
index 8947005..5e83724 100644 (file)
@@ -20,7 +20,7 @@
 
 #include "gameconfig.hpp"
 
-#include <cstdlib>
+#include <stdlib.h>
 #include <string>
 #include <stdexcept>
 
index 1c740e7..8aaba20 100644 (file)
@@ -20,9 +20,9 @@
 #include <config.h>
 
 #include <map>
-#include <cstdlib>
-#include <cstdio>
-#include <cstring>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
 #include <iostream>
 #include <fstream>
 #include <sstream>
index 89dbec4..9cd5a62 100644 (file)
@@ -21,7 +21,7 @@
 #define __SUPERTUX_MSG_H__
 
 #include <iostream>
-#include <cstdio>
+#include <stdio.h>
 
 #include "console.hpp"
 
index 5c27874..4294f68 100644 (file)
@@ -18,7 +18,7 @@
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 //  02111-1307, USA.
 #include <config.h>
-#include <cassert>
+#include <assert.h>
 
 #include "log.hpp"
 #include "main.hpp"
index 5e2f3f7..07d8536 100644 (file)
@@ -20,7 +20,7 @@
 
 #include "mainloop.hpp"
 
-#include <cstdlib>
+#include <stdlib.h>
 #include <SDL.h>
 #include "video/drawing_context.hpp"
 #include "control/joystickkeyboardcontroller.hpp"
index 41f5d75..352fac3 100644 (file)
@@ -19,7 +19,7 @@
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include <config.h>
 
-#include <cmath>
+#include <math.h>
 #include "lisp/writer.hpp"
 #include "lisp/lisp.hpp"
 #include "player_status.hpp"
index dbf23c9..90fbd5c 100644 (file)
@@ -37,7 +37,7 @@
 
 
 #include <stdexcept>
-#include <ctime>
+#include <time.h>
 #include <cassert>
 #include "random_generator.hpp"
 
index 6b8735a..e810efe 100644 (file)
@@ -19,7 +19,7 @@
 #ifndef __REFCOUNTER_HPP__
 #define __REFCOUNTER_HPP__
 
-#include <cassert>
+#include <assert.h>
 
 /**
  * A base class that provides reference counting facilities
index 904e1b2..125d186 100644 (file)
@@ -25,8 +25,8 @@
 #include <fstream>
 #include <sstream>
 #include <stdexcept>
-#include <cfloat>
-#include <cmath>
+#include <float.h>
+#include <math.h>
 #include <limits>
 #include <physfs.h>
 
index 8c0b1f8..0b9aa03 100644 (file)
@@ -20,8 +20,8 @@
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 #include <config.h>
 
-#include <cassert>
-#include <cmath>
+#include <assert.h>
+#include <math.h>
 #include <sstream>
 #include <limits>
 #include "video/drawing_context.hpp"
index ea18d8e..3157c51 100644 (file)
@@ -20,8 +20,8 @@
 //  02111-1307, USA.
 #include <config.h>
 
-#include <cmath>
-#include <cassert>
+#include <math.h>
+#include <assert.h>
 #include <iostream>
 #include <stdexcept>
 
index cba2a81..df1f90d 100644 (file)
@@ -24,7 +24,7 @@
 #include <stdexcept>
 #include <sstream>
 #include <iostream>
-#include <cassert>
+#include <assert.h>
 #include <SDL.h>
 #include "video/drawing_context.hpp"
 #include "log.hpp"
index aaf8a81..64906cf 100644 (file)
@@ -28,7 +28,7 @@
 #include <map>
 #include <iostream>
 #include <stdint.h>
-#include <cassert>
+#include <assert.h>
 #include "log.hpp"
 #include "tile.hpp"
 
index 6e9d3d0..9c94f58 100644 (file)
@@ -19,7 +19,7 @@
 //  02111-1307, USA.
 #include <config.h>
 
-#include <cmath>
+#include <math.h>
 #include "timer.hpp"
 
 float game_time = 0;
index 6f006a2..e04859a 100644 (file)
 #include <iostream>
 #include <sstream>
 #include <stdexcept>
-#include <cstdio>
-#include <cstdlib>
-#include <cstring>
-#include <cerrno>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <math.h>
+#include <errno.h>
 #include <unistd.h>
-#include <cmath>
 #include <SDL.h>
 #include <SDL_image.h>
 #include <physfs.h>
index 24d22c8..8fd4599 100644 (file)
@@ -19,7 +19,7 @@
 //  02111-1307, USA.
 #include <config.h>
 
-#include <cstddef>
+#include <stddef.h>
 #include <physfs.h>
 #include <stdexcept>