Fix headers and license info in several places
[bertos.git] / app / demo / demo.c
index c13fdf78cb68d31192f5a484bba89ba75000886e..d737f22d834f7c098b76caf3775b7943f2e57229 100644 (file)
  *
  * \version $Id: demo.c 18242 2007-10-08 17:35:23Z marco $
  *
- * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * \brief Windowing system test.
  */
 
+#include <cfg/macros.h>
+
 #include <emul/emul.h>
+
 #include <kern/proc.h>
 #include <kern/msg.h>
+
 #include <drv/timer.h>
 #include <drv/buzzer.h>
 #include <drv/lcd_gfx.h>
 #include <drv/kbd.h>
+
 #include <gfx/gfx.h>
 #include <gfx/win.h>
 #include <gfx/text.h>
 #include <gfx/font.h>
+
 #include <gui/menu.h>
 #include <icons/logo.h>
-#include <cfg/macros.h>
 
 /**
  * Draw a pentacle in the provided bitmap.
@@ -219,7 +224,6 @@ void win_demo(Bitmap *bm)
 void proc_demo(void)
 {
        extern void proc_test(void);
-// FIXME: proc_test() cause segmentation fault. 
        proc_test();
 }