blob: 9f12c5df3b2cf78476d2372df920f875a0b63bcf (
plain)
1 diff -urN dosbox-0.72/src/hardware/gameblaster.cpp dosbox-0.72-gcc4.3/src/hardware/gameblaster.cpp
2 --- dosbox-0.72/src/hardware/gameblaster.cpp 2007-01-10 21:17:37.000000000 +1100
3 +++ dosbox-0.72-gcc4.3/src/hardware/gameblaster.cpp 2008-11-29 10:42:27.304432272 +1100
4 @@ -17,6 +17,7 @@
5 */
6
7 #include <math.h>
8 +#include <cstring>
9 #include "dosbox.h"
10 #include "inout.h"
11 #include "mixer.h"
12 diff -urN dosbox-0.72/src/hardware/tandy_sound.cpp dosbox-0.72-gcc4.3/src/hardware/tandy_sound.cpp
13 --- dosbox-0.72/src/hardware/tandy_sound.cpp 2007-06-30 04:21:12.000000000 +1000
14 +++ dosbox-0.72-gcc4.3/src/hardware/tandy_sound.cpp 2008-11-29 10:43:06.026732418 +1100
15 @@ -21,6 +21,7 @@
16 */
17
18 #include <math.h>
19 +#include <cstring>
20 #include "dosbox.h"
21 #include "inout.h"
22 #include "mixer.h"
23 diff -urN dosbox-0.72/src/shell/shell_cmds.cpp dosbox-0.72-gcc4.3/src/shell/shell_cmds.cpp
24 --- dosbox-0.72/src/shell/shell_cmds.cpp 2007-08-18 03:58:46.000000000 +1000
25 +++ dosbox-0.72-gcc4.3/src/shell/shell_cmds.cpp 2008-11-29 10:44:16.806788351 +1100
26 @@ -18,6 +18,7 @@
27
28 /* $Id: shell_cmds.cpp,v 1.78 2007/08/17 17:58:46 qbix79 Exp $ */
29
30 +#include <cstdlib>
31 #include <string.h>
32 #include <ctype.h>
33 #include <vector>
|