Remove another instance of obsolete header inclusion
[bertos.git] / 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;