Remove another instance of obsolete header inclusion
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 14 Aug 2008 04:20:47 +0000 (04:20 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 14 Aug 2008 04:20:47 +0000 (04:20 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1640 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/emul/emul.cpp

index 4b0627f4798531fcbc837f04743a0e2dd79456a9..e26c680e7a0ecfb05f58c13094b86b09db40a2c7 100644 (file)
  * the GNU General Public License.
  *
  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
- * Copyright 2000, 2001 Bernie Innocenti <bernie@codewiz.org>
- *
+ * Copyright 2000, 2001, 2008 Bernie Innocenti <bernie@codewiz.org>
  * -->
  *
- * \version $Id$
+ * \brief Qt-based emulator framework for embedded applications (implementation)
  *
+ * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
- *
- * \brief Qt-based emulator framework for embedded applications (implementation)
  */
 
 #include "emul.h"
 
 #include <cfg/module.h>
 
-
-
-#include <cstdlib> // std::exit()
-
 #include <QtGui/qapplication.h>
+#include <cstdlib> // std::exit()
 
 
 /// The global emulator instance.
 Emulator *emul;
 
 #if CONFIG_KERNEL
-       #include <mware/list.h>
+       #include <struct/list.h>
 
        /// List of process stacks
        List StackFreeList;