]> Shamusworld >> Repos - virtualjaguar/commitdiff
Small fix to accomodate gcc 4.3.1 moving strcmp() to <cstring> header
authorShamus Hammons <jlhamm@acm.org>
Thu, 18 Sep 2008 10:06:11 +0000 (10:06 +0000)
committerShamus Hammons <jlhamm@acm.org>
Thu, 18 Sep 2008 10:06:11 +0000 (10:06 +0000)
src/sdlemu_config.cpp

index 539de4098c099f74b167120bd42a84a25f7e33a5..b43410a0e293916905b369b85efa69f87193a120 100644 (file)
@@ -19,7 +19,8 @@
 
 #include "sdlemu_config.h"
 
-#include <stdio.h>
+#include <stdlib.h>                                                            // For atoi()
+#include <cstring>                                                             // For strcmp()
 #include <string>
 #include <list>