]> git.sesse.net Git - vlc/commitdiff
* modules/access/file.c: Fixed a compile issue (thanks michael.mauch at gmx.de)
authorChristophe Massiot <massiot@videolan.org>
Mon, 9 Jun 2003 09:29:12 +0000 (09:29 +0000)
committerChristophe Massiot <massiot@videolan.org>
Mon, 9 Jun 2003 09:29:12 +0000 (09:29 +0000)
modules/access/file.c

index 94f4277d618b737c48ab39df1f9aa2650b5f6f2e..6f3b568829bcea87a010b4f87a4dbbd0b8d69eac 100644 (file)
@@ -2,7 +2,7 @@
  * file.c: file input (file: access plug-in)
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: file.c,v 1.20 2003/05/15 22:27:36 massiot Exp $
+ * $Id: file.c,v 1.21 2003/06/09 09:29:12 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -32,6 +32,9 @@
 #ifdef HAVE_SYS_TYPES_H
 #   include <sys/types.h>
 #endif
+#ifdef HAVE_SYS_TIME_H
+#   include <sys/time.h>
+#endif
 #ifdef HAVE_SYS_STAT_H
 #   include <sys/stat.h>
 #endif