]> git.sesse.net Git - vlc/commitdiff
Fix header order
authorChristophe Mutricy <xtophe@videolan.org>
Sat, 6 Oct 2007 22:07:12 +0000 (22:07 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Sat, 6 Oct 2007 22:07:12 +0000 (22:07 +0000)
modules/video_output/caca.c

index 66e2452db06a9658a511f4c8981c1a7538647b3b..eb565dbaff26e06cbdc4bb35f774774a429f9505 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>                                                 /* ENOMEM */
+
+#include <vlc/vlc.h>
+#include <vlc_vout.h>
+#include <vlc_interface.h>
+#include <vlc_playlist.h>
+#include <vlc_keys.h>
 
 #include <caca.h>
 
 #   define caca_set_display_title(x,y) caca_set_window_title(y)
 #endif
 
-#include <vlc/vlc.h>
-#include <vlc_vout.h>
-#include <vlc_interface.h>
-#include <vlc_playlist.h>
-#include <vlc_keys.h>
-
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/