A few GCC 4.3 fixes.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1535 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2008-05-30 12:06:17 +00:00
parent b454085e8e
commit 66ab71a5c6
3 changed files with 7 additions and 3 deletions

View File

@ -13,10 +13,11 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: CartAR.cxx,v 1.21 2008-03-28 23:29:13 stephena Exp $
// $Id: CartAR.cxx,v 1.22 2008-05-30 12:06:17 stephena Exp $
//============================================================================
#include <cassert>
#include <cstring>
#include "M6502Hi.hxx"
#include "Random.hxx"

View File

@ -13,9 +13,11 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: TrackBall.cxx,v 1.2 2008-05-19 03:15:12 stephena Exp $
// $Id: TrackBall.cxx,v 1.3 2008-05-30 12:06:17 stephena Exp $
//============================================================================
#include <cstdlib>
#include "Event.hxx"
#include "System.hxx"
#include "TIA.hxx"

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: SerialPortUNIX.cxx,v 1.4 2008-04-11 17:56:34 stephena Exp $
// $Id: SerialPortUNIX.cxx,v 1.5 2008-05-30 12:06:17 stephena Exp $
//============================================================================
#include <sys/types.h>
@ -23,6 +23,7 @@
#include <sys/termios.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <cstring>
#include "SerialPortUNIX.hxx"