diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 16:32:58 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-16 16:32:58 +0000 |
commit | 46dd1a8031362a79fb790d3020801bbd41ab295a (patch) | |
tree | 2dfe7c73cd6259c65356eb50cc56067a94ac2fa3 /src | |
parent | 9db0ca44fdce4a9d096e3f29e2f49e4d02968f2c (diff) | |
download | xine-lib-46dd1a8031362a79fb790d3020801bbd41ab295a.tar.gz xine-lib-46dd1a8031362a79fb790d3020801bbd41ab295a.tar.bz2 |
Move netinet/in.h include down the block; this is currently patched by FreeBSD ports, and makes no functional change of sort on Linux.
CVS patchset: 8675
CVS date: 2007/03/16 16:32:58
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_vcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c index 82c1b53d9..bcd50ecc1 100644 --- a/src/input/input_vcd.c +++ b/src/input/input_vcd.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_vcd.c,v 1.88 2007/01/19 01:05:25 dgp85 Exp $ + * $Id: input_vcd.c,v 1.89 2007/03/16 16:32:58 dgp85 Exp $ * */ @@ -25,7 +25,6 @@ #include "config.h" #endif -#include <netinet/in.h> #include <stdio.h> #include <stdlib.h> #include <sys/stat.h> @@ -34,6 +33,7 @@ #include <fcntl.h> #include <sys/ioctl.h> #include <string.h> +#include <netinet/in.h> #ifdef HAVE_LINUX_CDROM_H # include <linux/cdrom.h> #endif |