changeset 33842:a4efd6c16f8a

vo_bl: Move config.h #include to the top of the #include list. config.h is required to make conditional #includes of other headers possible. Fixes: libvo/vo_bl.c:41:5: warning: "HAVE_SYS_MMAN_H" is not defined
author diego
date Wed, 27 Jul 2011 13:40:09 +0000
parents 25667edae85c
children 1d054f341ec3
files libvo/vo_bl.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_bl.c	Wed Jul 27 13:40:06 2011 +0000
+++ b/libvo/vo_bl.c	Wed Jul 27 13:40:09 2011 +0000
@@ -27,6 +27,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -41,8 +43,6 @@
 #endif
 #include <sys/ioctl.h>
 
-#include "config.h"
-
 #include <netdb.h>
 #include <sys/socket.h>
 #include <netinet/in.h>